如果我有一个包含大量图像的页面,其中应用了很多 CSS 效果和 CSS 动画,我是否会通过循环使用与使用 jQuery 以编程方式将页面滚动到某个点“x”来获得window.scrollTo
性能requestAnimationFrame
提升$("html").animate({ scrollTop: "x" })
?
Tl;DR — rAF +window.scrollto()
与.animate({scrollTop: "x"})
性能
谢谢!
如果我有一个包含大量图像的页面,其中应用了很多 CSS 效果和 CSS 动画,我是否会通过循环使用与使用 jQuery 以编程方式将页面滚动到某个点“x”来获得window.scrollTo
性能requestAnimationFrame
提升$("html").animate({ scrollTop: "x" })
?
Tl;DR — rAF +window.scrollto()
与.animate({scrollTop: "x"})
性能
谢谢!