怎么监听手机端屏幕的滑动啊,同时计算出滚动距离顶部多少?
$('body').bind('touchmove', function(e) { var winHeight = $(window).scrollTop(); console.log(winHeight); });
我这样写的一直是0? 监听scroll没效果的!求大神
人生最曼妙的风景,竟是内心的淡定与从容!
雷雷
$('body').on("touchstart",function(ev){ var winHeight = $(window).scrollTop(); $('body').on("touchmove",function(ev){ console.log(winHeight); }) });
你试试这样写看看呗
雷雷
你试试这样写看看呗
雷雷
雷雷