퍼블리싱

최상단 스크롤

김청 2016. 6. 28. 16:20
$(document).ready(function () {
	$(window).scroll(function(){
		var scTop = $(window).scrollTop();
		if (scTop > $("header").outerHeight()) {
			$("#gotop").fadeIn(300);
		} else {
			$("#gotop").fadeOut(300);
		}
	});
	$("#gotop").click(function(){
		$("html, body").stop().animate({scrollTop:0}, 500);
		return false;
	});
});

<★a id="gotop" href="#void" alt="위로" title="위로" style="display: inline;"><★/a>