본문 바로가기
내마음대로만들어보자/JS

scroll() 이벤트 메서드

by 소농민! 2021. 8. 23.
728x90

scroll() 이벤트 메서드는 대상 요소의 스크롤바가 이동할 때마다 이벤트를 발생시키거나 강제로 scroll 이벤트를 발생시킨다.

 

* 예제

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title> 이벤트 </title>  
<script src="js/jquery.js"></script>
<script>
$(window).on("scroll",function(){
var sc_top = $(this).scrollTop();
var sc_left = $(this).scrollLeft();

$(".top").text(sc_top);
$(".left").text(sc_left);
});
</script>
<style>
body{
height:10000px;
width:5000px;
}
#wrap{
position: fixed;
left: 10px; top: 10px;
}
</style>
</head>
<body>
<div id="wrap">
<p>scrollTop: <span class="top">0</span>px</p>
<p>scrollLeft: <span class="left">0</span>px</p>
</div>
</body>
</html>