javascript - position:fixed使元素保持底部,为什么手机上却依然跟随滑动,直到松开手指?【gif】
PHPz
PHPz 2017-04-17 12:00:01
0
2
1155

我想通过position:fixed使元素保持底部,为什么手机上却依然跟随滑动,直到松开手指?

在电脑上是没有问题的,会始终固定在底部,但在手机上是这样子的:

为什么松开手指,它才会回到底部?

另外由于路由转场需要,fiexd元素的父元素是absolute固定定位,是这个原因造成的吗?

我该怎么解决?

PHPz
PHPz

学习是最好的投资!

reply all(2)
洪涛

It is not recommended to use fixed positioning. Absolute should be used. For details, please refer to weui's tabbar

伊谢尔伦

You can add CSS3 attributes:

    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template