Safari 设置平滑滚动
body {
-webkit-overflow-scrolling:touch;
}
如果页面有position: fixed
的元素,那么页面布局会错乱
则需要设置transform
.element {
position: fixed;
transform: translateZ(0);
-webkit-transform: translateZ(0);
}
相关问题
https://stackoverflow.com/questions/22167382/position-fixed-not-working-on-windows-safari
大牛们的评论:朕有话说
还没有人评论哦,赶紧抢沙发!