jQuery页面滚动浮动层智能定位实例代码
更新时间:2011年08月23日 23:23:26 作者:
jQuery页面滚动浮动层智能定位实例代码,需要的朋友可以参考下。
HTML代码:
<div class="float" id="float">
我是个腼腆羞涩的浮动层...
</div>
JS代码:
$.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: "absolute",
top: top
});
}
});
};
return $(this).each(function() {
position($(this));
});
};
//绑定
$("#float").smartFloat();
复制代码 代码如下:
<div class="float" id="float">
我是个腼腆羞涩的浮动层...
</div>
JS代码:
复制代码 代码如下:
$.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: "absolute",
top: top
});
}
});
};
return $(this).each(function() {
position($(this));
});
};
//绑定
$("#float").smartFloat();
相关文章
JQuery使用index方法获取Jquery对象数组下标的方法
这篇文章主要介绍了JQuery使用index方法获取Jquery对象数组下标的方法,涉及jQuery中index方法的使用技巧,需要的朋友可以参考下2015-05-05
最新评论