我想知道为什么我的CSS过渡效果在Firefox中看起来很棒,而在IE和Chrome中却非常“跳跃”。我现在整天都在工作,我不明白为什么会这样。我尝试了背面可见性,但这也不起作用。我完全被困在这个...

我所拥有的是:

<div class="stickyWrap">
  <div id="header">content</div>
   <div id="nav">content</div>
</div>


CSS:

#header{
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
    backface-visibility: hidden;
    padding: 20px 0;
}
.stickyWrap.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.stickyWrap.sticky #header {
    padding: 5px 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
    backface-visibility: hidden;
}


最好的解释方法是在FF,Chrome和/或IE中打开this test site
有人可以看到我在做什么吗?关于stickyWrap div?

最佳答案

如果您想模拟原生应用动画的平滑度,您仍然可以欺骗浏览器启用GPU渲染。只需添加此CSS代码行

.myAnimatingClass{
    transform: translate3d(0,0,0);
}

09-16 14:19