DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery實現頁面滾動時層智能浮動定位實例探討
jQuery實現頁面滾動時層智能浮動定位實例探討
編輯:JQuery特效代碼     
各位兄弟可能碰到定位的問題,特別是在博客或者微博上面也會見到這個效果,於是產品人員在策劃的時候就會要人家那種效果,,,而苦逼的我們需要去實現,實現實現。。。。。沒辦法,誰讓我們是攻城師呢,攻吧:

效果圖如下,滾動條下拉的時候黑色的塊TOP為0;固定顯示:

代碼如下:
. 代碼如下:
<!DOCTYPE html>
<html >
<head>
<title>jQuery實現頁面滾動時層智能浮動定位</title>
<meta name="description" content="" />
<script type="text/javascript" src="http://jt.875.cn/js/jquery.js"></script>
<style type="text/css">
*{ margin:0; padding:0;}
.top{height:100px; background:#ccc;text-align:center; line-height:100px; font-size:40px;}
body { font:12px/1.8 Arial; color:#666; height:2000px;}
.float{width:200px; height:200px; border:1px solid #ffecb0; background-color:#000;position:absolute; right:10px; top:150px;}
</style>
</head>
<body>
<div class="top">導航啊導航啊導航</div>
<div class="float" id="float"></div>
<script type="text/javascript">
$.fn.smartFloat = function() {
var position = function(element) {
var top = element.position().top, pos = element.css("position");
$(window).scroll(function() {
var scrolls = $(this).scrollTop();
if (scrolls > top) {
if (window.XMLHttpRequest) {
element.css({
position: "fixed",
top: 0
});
} else {
element.css({
top: scrolls
});
}
}else {
element.css({
position: pos,
top: top
});
}
});
};
return $(this).each(function() {
position($(this));
});
};
//綁定
$("#float").smartFloat();
</script>
</div>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved