赞
踩
scoll() {
let ua = window.navigator.userAgent;
//获取端口机型
let app = window.navigator.appVersion;
if(!!ua.match(/(i[^;]+;( U;)? CPU.+Mac OS X/)){
var currentPosition,timer;
var speed=1;
timer=setInterval(function(){
currentPosition=document.documentElement.scrollTop || document.body.scrollTop;
currentPosition-=speed;
window.scrollTo(0,currentPosition);//页面向上滚动
currentPosition+=speed;
window.scrollTo(0,currentPosition);//页面向下滚动
clearInterval(timer);
},100);
}else if(ua.indexOf(‘Android’) > -1 || ua.indexOf(‘Adr’) > -1) {
}
}**
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。