Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML에서 요소의 스크롤바를 스크롤할 때 스크립트를 실행하시겠습니까?


요소가 스크롤되면 온스크롤 속성 트리거. 다음 코드를 실행하여 onscroll을 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myid {
            width   : 250px;
            height  : 80px;
            border  : 2px solid blue;
            overflow: scroll;
         }
      </style>
   </head>
   <body>
      <p>Scroll the box.</p>
      <div id = "myid" onscroll = "display()">This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text.
      <br><br></div>
      <script>
         function display() {
            document.getElementById("myid").style.color = "blue";
         }
      </script>
   </body>
</html>