例如 sencha touch, mobiscroll
mobiscroll 在下滑滚动选择日期时都是改变 CSS
-webkit-transform: translate3d(0px, -40px, 0px);
去实现的。这样有一个效果是日期在选择的时候不会连带拖动整个 UI。除此之外还有什么好处吗?
阿神2017-04-17 11:21:43
我记得移动端是不支持原生滚动的,也就是不支持overflow: scroll; 于是才有了iscroll这样的解决框架。不过最新的Safari开始支持了。具体你搜下到处都是,不列举了。
怪我咯2017-04-17 11:21:43
關鍵不在硬件加速,而在於是否 reflow。
A reflow is a more significant change. This will happen whenever the DOM tree is manipulated, whenever a style is changed that affects the layout, whenever the className property of an element is changed, or whenever the browser window size is changed.
使用 margin/top 修改會觸發 reflow,拖慢速度。
Elements that are positioned absolutely or fixed, do not affect the layout of the main document, so if they reflow, they are the only thing that reflows. The document behind them will need to repaint to allow for any changes, but this is much less of a problem than an entire reflow.
absolute 和 fixed 的元素的 reflow 不會牽動整體,但依舊不如 transform 只需要 repaint。
而 translate 和 translate3d 的區別則在於硬件加速。
參考資料:https://dev.opera.com/articles/efficient-javascript/?page=3#reflow