jquery实现的导航固定效果
时间:2021-06-26 08:47:12|栏目:jquery|点击: 次
jquery实现的导航固定效果
复制代码 代码如下:
1.jquery代码, .nav为导航的class
$(function(){
$(window).scroll(function() {
if($(window).scrollTop()>=250){
$(".nav").addClass("fixedNav");
}else{
$(".nav").removeClass("fixedNav");
}
});
});
2.CSS代码
.fixedNav{
position:fixed;
top:0px;
left:0px;
width:100%;
z-index:100000;
_position:absolute;
_top:expression(eval(document.documentElement.scrollTop));
}
3.HTML代码
<div class="nav">
<p>导航固定</p>
</div>
栏 目:jquery
下一篇:jquery中的$(document).ready()与window.onload的区别
本文标题:jquery实现的导航固定效果
本文地址:http://www.codeinn.net/misctech/148429.html