HTML
<div class="top-button">TOP</div>
CSS
.top-button { width: 50px; height: 50px; border-top-left-radius: 5px; border-top-right-radius: 5px; background-color: #FFFFFF; color: #212121; opacity: 0.3; bottom: 0px; position: fixed; right: 10px; text-align: center; line-height: 50px; display: none; cursor: pointer;}
JQUERY
$(function(){
$('.top-button').click(function(){
$('html, body').animate({scrollTop: 0}, 500);
});
});
'WEB > JQUERY' 카테고리의 다른 글
[jQuery] 제이쿼리 불러오기 (0) | 2017.12.13 |
---|---|
[jQuery] 클릭한 id값 가져오기 (0) | 2017.11.28 |
[jQuery] 딜레이주기 .delay();, setTimeout(); (0) | 2017.11.28 |
[jQuery] 내가 원하는 엘리먼트(태그) 좌표구하기 (0) | 2017.11.28 |
[jQuery] 클래스 있는지 체크하기 (0) | 2017.11.28 |