1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <title></title>
    5. <meta charset="utf-8" />
    6. <style type="text/css">
    7. *,body{
    8. padding:0;
    9. margin:0px;
    10. }
    11. #title{
    12. width: 120px;
    13. height: 38px;
    14. line-height: 38px;
    15. text-align: center;
    16. border:1px solid #ddd;
    17. font-size: 14px;
    18. cursor: pointer;
    19. }
    20. /* 列表样式 */
    21. #list{
    22. width: 120px;
    23. list-style: none;
    24. border:1px solid #ddd;
    25. display: none;
    26. border-radius:4px;
    27. }
    28. #list li{
    29. width: 100%;
    30. height: 30px;
    31. line-height: 30px;
    32. text-align: center;
    33. font-size: 14px;
    34. border-bottom:1px solid #ddd;
    35. }
    36. </style>
    37. <script type="text/javascript">
    38. function show(){
    39. document.getElementById("list").style.display = "block";
    40. document.getElementById("title").style.color = "red";
    41. }
    42. function hide(){
    43. document.getElementById("list").style.display = "none";
    44. document.getElementById("title").style.color = "";
    45. }
    46. </script>
    47. </head>
    48. <body>
    49. <p id="title" onmouseover="show()" onmouseout="hide()">卖家中心</p>
    50. <ul id="list">
    51. <li>免费开店</li>
    52. <li>已卖出的宝贝</li>
    53. <li>出售中的宝贝</li>
    54. <li>卖家服务市场</li>
    55. <li>卖家培训中心</li>
    56. </ul>
    57. </body>
    58. </html>

    2021-09-25_180737.jpg2021-09-25_180744.jpg2021-09-25_180750.jpg