jQuery页面滚动浮动层智能定位实例代码_jquery
程序员文章站
2022-04-11 16:34:48
...
HTML代码:
我是个腼腆羞涩的浮动层...
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();
复制代码 代码如下:
我是个腼腆羞涩的浮动层...
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实现页面滚动时智能浮动定位
-
jQuery实现页面滚动时层智能浮动定位实例探讨_jquery
-
不用锚点也可以平滑滚动到页面的指定位置实现代码_jquery
-
js页面滚动时层智能浮动定位实现(jQuery/MooTools)_jquery
-
jQuery实现div浮动层跟随页面滚动效果_javascript技巧
-
jQuery实现页面滚动时层智能浮动定位实例探讨_jquery
-
不用锚点也可以平滑滚动到页面的指定位置实现代码_jquery
-
jQuery页面滚动浮动层智能定位实例代码_jquery
-
MooTools 页面滚动浮动层智能定位实现代码_Mootools
-
jQuery实现div浮动层跟随页面滚动效果_javascript技巧