1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| let ua = window.navigator.userAgent; let app = window.navigator.appVersion;
if (!!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)) { $("input,textarea").on("blur", function () { 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) { }
|