浮動DIV我jQuery的新手,我想股利在屏幕上方掛在頁面Scrolldown已超過50,我怎麼能做到這一點?如何實現對下滾
我想股利是永遠絕對的,不是固定不變的。
$(document).ready(function() {
$(window).scroll(function() {
if ($(window).scrollTop() > 50) {
$(".articlebutton").css("top", "0px"); //I want this value to change dynamically as the scrollbar moves down, so that the div stays on top of screen
} else {
$(".articlebutton").css("top", "-50px");
}
});
});
謝謝。 :)很好的答案。 –