对于jq实现带有二级导航的,鼠标移入移出改变css属性样式
2021-03-22 17:27
标签:hit style 颜色 none ade ack ref order back 1、布局:一级导航用ul li ,二级导航在li 里面可以嵌套div实现 2、交互:鼠标移入改变背景和字体颜色,移除去掉。 对于jq实现带有二级导航的,鼠标移入移出改变css属性样式 标签:hit style 颜色 none ade ack ref order back 原文地址:https://www.cnblogs.com/jervy/p/12699911.htmlli class="pull-active">
a href="">资讯a>
div class="ul ulH3">
div class="li">
a href="">活动a>
div>
div class="li">
a href="">通知a>
div>
div class="li">
a href="">新闻a>
div>
div class="li">
a href="">政策a>
div>
div>
li>
$(".pull-active").mouseover(function () {
this.style.background = ‘#f39800‘;
this.style.borderRadius = ‘5px‘;
this.style.color = "white";
$(this).children(‘.ul‘).fadeIn().css("display",‘block‘);
}).mouseleave(function () {
$(this).children(‘.ul‘).fadeOut().css("display", ‘none‘);
this.style.background = ‘none‘;
this.style.color = ‘none‘;
});
下一篇:asp.net core小结
文章标题:对于jq实现带有二级导航的,鼠标移入移出改变css属性样式
文章链接:http://soscw.com/index.php/essay/67625.html