Skip to content

Instantly share code, notes, and snippets.

@simplelife7
Created May 5, 2014 02:58
Show Gist options
  • Save simplelife7/7a013513ef8c9069f1d0 to your computer and use it in GitHub Desktop.
Save simplelife7/7a013513ef8c9069f1d0 to your computer and use it in GitHub Desktop.
【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));
});
};
$("#timeLeft").smartFloat();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment