jQuery Mobile 互动版

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

scrollstart与scrollstop

jQuery Mobile提供了两种滚屏事件:滚屏开始(scrollstart)时触发和滚动结束(scrollstop)时触发。

$(document).on("scrollstart",function(){
    alert("开始滚动!");
});
  练习一下scrollstop事件!