html5 - 为什么很多移动端的HTML UI,在滚动时都用transform属性而不是用传统的滚动条?
巴扎黑
巴扎黑 2017-04-17 11:19:43
0
5
709

例如 sencha touch, mobiscroll

mobiscroll 在下滑滚动选择日期时都是改变 CSS

-webkit-transform: translate3d(0px, -40px, 0px);

去实现的。这样有一个效果是日期在选择的时候不会连带拖动整个 UI。除此之外还有什么好处吗?

巴扎黑
巴扎黑

全部回覆(5)
阿神

我记得移动端是不支持原生滚动的,也就是不支持overflow: scroll; 于是才有了iscroll这样的解决框架。不过最新的Safari开始支持了。具体你搜下到处都是,不列举了。

刘奇

關鍵不在硬件加速,而在於是否 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

洪涛

translate3d能开启硬件加速,提升性能。

巴扎黑

是性能问题,移动端的焦点图效果都是translate3d做的,那样运动效果更平滑,而不是一卡一卡的

大家讲道理

overflow:hidden; 很多坑。。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!