移动端滚动条滚动收集
Posted sybboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端滚动条滚动收集相关的知识,希望对你有一定的参考价值。
1.锚点链接
2.document.getElementById(rewardid).scrollIntoView();
3.
Math.easeout = function (A, B, rate, callback) { if (A == B || typeof A != ‘number‘) { return; } B = B || 0; rate = rate || 2; var step = function () { A = A + (B - A) / rate; if (A < 1) { callback(B, true); return; } callback(A, false); requestAnimationFrame(step); }; step(); };
var doc = document.body.scrollTop? document.body : document.documentElement; Math.easeout(doc.scrollTop, 0, 4, function (value) { doc.scrollTop = value; });
以上是关于移动端滚动条滚动收集的主要内容,如果未能解决你的问题,请参考以下文章