Knowledge

jQuery(제이쿼리) 스크롤(Scroll) 예제

메디츠 2024. 1. 27. 09:58
반응형

<script

src="https://code.jquery.com/jquery-2.2.4.min.js"

integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="

crossorigin="anonymous"></script>

<script>

$(function(){

$('html, body').animate({

scrollTop: 100 // 스크롤 높이

}, 500); // 스크롤 속도

});

</script>

<html>

<body>

<img src="https://via.placeholder.com/1024x2048">

</body>

</html>

 

반응형