JavaScript實現下拉菜單的顯示隱藏

本文實例為大傢分享瞭JavaScript實現下拉菜單顯示隱藏的具體代碼,供大傢參考,具體內容如下

有時需要這種頁面效果:
鼠標移動到元素上面時,實現下拉菜單
鼠標移開元素後,下拉菜單不見瞭

實現思路

1、一個盒子裡包含上下兩部分,下面部分為子菜單,先設置為隱藏:display: none;
2、當鼠標移動到盒子上:觸發事件- – -onmouseover ,js設置下面部分子菜單的display值為- – -block,使子菜單顯示
3、鼠標移開盒子:觸發事件- – -onmouseout ,js又設置下面部分子菜單的display值為- – -none,使子菜單又隱藏起來
4、字體顏色,背景顏色等樣式的改變,根據所需進行相應變化

代碼示例

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>操作元素-新浪下拉菜單</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        ul li {
            list-style: none;
        }
        
        a {
            text-decoration: none;
            color: #4c4c4c;
        }
        
        a:hover {
            color: #e88415;
        }
        
        .box {
            width: 80px;
            margin: 50px auto;
            font-size: 14px;
            color: #4c4c4c;
        }
        
        .weibo {
            position: relative;
            background-color: #fcfcfc;
        }
        
        .weibo a {
            display: block;
            height: 40px;
            line-height: 40px;
            padding-left: 20px;
        }
        
        .change {
            color: #f9a74f;
            background-color: #edeef0;
        }
        
        i {
            position: absolute;
            top: 50%;
            right: 15px;
            margin-top: -4px;
            width: 5px;
            height: 5px;
            border-bottom: 1px solid orangered;
            border-right: 1px solid orangered;
            transform: rotate(45deg);
        }
        
        .weiboList {
            display: none;
        }
        
        .weiboList li a {
            display: block;
            width: 80px;
            height: 33px;
            line-height: 33px;
            padding-left: 15px;
            border-bottom: 1px solid #fecc5b;
            background-color: #fff;
        }
        
        .weiboList li a:hover {
            background-color: #fff5da;
        }
    </style>
</head>

<body>
    <div class="box">
        <div class="weibo"><a href="#" >微博<i class="select"></i></a></div>
        <ul class="weiboList">
            <li><a href="#" >私信</a></li>
            <li><a href="#" >評論</a></li>
            <li><a href="#" >@我</a></li>
        </ul>
    </div>

    <script>
        var box = document.querySelector('.box');
        var weibo = document.querySelector('.weibo');
        var weiboList = document.querySelector('.weiboList');

        box.onmouseover = function() {
            weibo.className = 'weibo change'
            weiboList.style.display = 'block';

        }

        box.onmouseout = function() {
            weibo.className = 'weibo';
            weiboList.style.display = 'none';
        }
    </script>
</body>

</html>

頁面效果:

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: