onmousewheelhtml
onmousewheel
<script> var scrollFunc = function (e){ //其實我一開始也不知道用啥 //console.log(e)咱們能夠打印一下 //而後經過觀察看他裏面的變量哪一個再上滾下滾時候不一樣 //能夠經過這傳入值e.deltaY的正負來判斷 //deltaY大於0爲下滾,deltaY小於0爲上滾 } window.onmousewheel =scrollFunc </script>