Bootstrap下拉导航在iOS上跳跃

时间:2015-12-22 02:35:20

标签: ios iphone twitter-bootstrap mobile drop-down-menu

我正在研究http://www.disccaddie.com/。一切似乎都运行良好,除了在iOS(可能是其他移动设备)上,当您按下汉堡包图标时,Bootstrap导航栏会跳跃或卡顿。我已经尝试了几种解决方案,但似乎无法修复它。有什么建议?谢谢!

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,发现它是由我的css中的所有元素应用转换引起的。

我注意到你的样式表中有以下内容:

* {
-webkit-transition: all .25s ease-in-out;
-moz-transition: all .25s ease-in-out;
-ms-transition: all .25s ease-in-out;
-o-transition: all .25s ease-in-out;
transition: all .25s ease-in-out; }

我认为如果你更具体地将它应用于你想要制作动画的元素,或者至少在你的导航元素上覆盖它,它应该可以解决问题。