<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events</title>
<style>
div {
width: 50px;
height: 5000px;
background-color: red;
}
</style>
</head>
<body>
<h1>Capturing Scroll Events</h1>
<div></div>
<script>
var pagetop;
window.addEventListener('scroll', function(){
pagetop = window.pageYOffset;
console.log(pagetop);
});
</script>
</body>
</html>
스크롤하면 콘솔에 pagetop이 찍힘
'Programming > JavaScript' 카테고리의 다른 글
Key Down Event (0) | 2022.03.11 |
---|---|
Window Resizing (0) | 2022.03.11 |
Mouseover, Mouseover Events: HTMLPreviousNext (0) | 2022.03.11 |
Event.preventDefault() (0) | 2022.03.11 |
Sequence selection loop (0) | 2022.03.09 |