码迷,mamicode.com
首页 > 其他好文 > 详细

菜单悬停效果

时间:2014-10-18 15:14:47      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   on   

1 <div class="cont">
2     <div id="top"> </div>
3     <div id="nav" class="nav"> </div>
4 </div>
5 <div style="height:1000px;"></div>
1  #top{width:100%;height:50px;border:1px solid red;}
2  .nav{width:1080px;height:50px;background:green;margin:0px auto;}
3  .scoll_nav{width:100%;position:fixed; top:10px;  z-index:10000;}
 1     $(document).ready(function(e) {                                   
 2         $(window).scroll(function() {
 3           if($(window).scrollTop() >  $("#top").height()+10){
 4                  $("#nav").addClass("scoll_nav")
 5             }
 6           else{
 7                  $("#nav").removeClass(    "scoll_nav")
 8             }
 9        });                                       
10     })

 

菜单悬停效果

标签:style   blog   color   io   os   ar   sp   div   on   

原文地址:http://www.cnblogs.com/yiliweichinasoft/p/4032993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!