&nbs"/> &nbs">
onwheel요소에서 마우스 휠이 위 또는 아래로 스크롤될 때 속성이 트리거됩니다. 다음 코드를 실행하여 onwheel properties -
<!DOCTYPE html> <html> <body> <h3 id = "myid" onwheel = "mouseWheel()"> This is demo heading. </h3> <p>Click above and use mouse wheel to change the heading color.</p> <script> function mouseWheel() { document.getElementById("myid").style.color = "red"; } </script> </body> </html>을 구현할 수 있습니다.
위 내용은 HTML 요소에서 마우스 휠을 위 또는 아래로 스크롤할 때 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!