为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

window.onload=function(){

    var aLi=document.getElementsByTagName('li');

for(var i=0; i<aLi.length; i++){

aLi[i].onmouseover=function(){

            //鼠标经过一级菜单,二级菜单动画下拉显示出来

       var subNav = this.getElementsByTagName('ul')[0];

            if(subNav){

                var _this = subNav;

                clearInterval(_this.time);

                _this.time = setInterval(function(){

                    _this.style.height = _this.offsetHeight+16+"px";

                    if(_this.offsetHeight >= 120){

                        clearInterval(_this.time);

                    }

                },30)

            }

}

        //鼠标离开菜单,二级菜单动画收缩起来。

aLi[i].onmouseout=function(){

            var subNav = this.getElementsByTagName('ul')[0];

            if(subNav){

                var _this = subNav;

                clearInterval(_this.time);

                _this.time = setInterval(function(){

                    _this.style.height = _this.offsetHeight-16+"px";

                    if(_this.offsetHeight <= 0){

                        clearInterval(_this.time);

                    }

                },30)

            }

}

}

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
导航条菜单的制作
  • 参与学习       123899    人
  • 解答问题       813    个

水平、垂直、圆角导航条菜单,让您的技术探索之路更高效

进入课程

感觉好难啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信