// ===== Scroll to Top ====
$(window).scroll(function() {
if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px
$('#return-to-top').fadeIn(200); // Fade in the arrow
} else {
$('#return-to-top').fadeOut(200); // Else fade out the arrow
}
});
$('#return-to-top').click(function() { // When arrow is clicked
$('body,html').animate({
scrollTop: 0 // Scroll to top of body
}, 500);
});
버튼을 클릭 할 때마다 맨 위로 이동하지 않습니다. 그것은 단지 아무 것도하지 않을 것입니다. 어떤 도움이라도 대단히 감사하겠습니다. 다음은 CSS입니다. http://pastebin.com/1SF4S6Vg클릭하면 맨 위로 가기 단추가 맨 위로 이동하지 않는 이유는 무엇입니까?
그냥 jsfiddle을 넣고 유용 할 수있는 링크를 줄 수 있습니다. –