jquery怎么做导航条随滚动条的滚动而滚动,不是固定的那种。
发布网友
发布时间:2022-05-13 05:31
我来回答
共3个回答
懂视网
时间:2022-05-13 09:52
new document
热心网友
时间:2022-05-13 08:18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
$(function(){
$(window).scroll(function(){
var h = $(window).scrollTop();
$("#ul").animate({top : h },{ ration:600 , queue:false });
});
});
</script>
<style type="text/css">
#ul{
position:absolute;
width:100px;
height:100px;
border:1px solid gray;
}
</style>
</head>
<body>
<ul id="ul">
<li><a class="cont" href="#aa">首页</a></li> <li><a class="work" href="#bb">商城</a></li> <li><a class="home" href="#">评论</a></li> </ul>
<div style="height:800px;">
</div>
</body>
</html>
预览地址:http://wzqiangde.usaj1.25x.com.cn/Scroll/scroll.html
例子比较简单。。。