Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能使导航菜单折叠和展开流畅的动画而不是混蛋?请在小分辨率上查看 www.mobilewebbestpractices.com/index.html,看看我想要什么?
它缓慢的原因是系统无法足够快地绘制帧以使其成为流畅的动画。
我发现这个问题的解决方案是完全停止使用动画。
您可以尝试类似于以下的代码...
$(function() { $('.btn.btn-navbar').live('click', function() { $('.nav-collapse').toggle(); }); });