Created
May 5, 2014 02:58
-
-
Save simplelife7/7a013513ef8c9069f1d0 to your computer and use it in GitHub Desktop.
【JS】滚动吸顶
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 时间倒数吸顶 | |
$.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