CSS3变换闪烁垂直对齐的元素

时间:2016-10-31 13:11:59

标签: css3 css-transitions vertical-alignment css-transforms flicker

出于结构原因,我必须使用绝对定位+ translateY(-50%)来垂直对齐元素。

然而,动画这些垂直对齐的元素会在每个浏览器上显示出一个小故障。元素在动画结束时模糊并闪烁。

我已经尝试过使用perspective,translateZ,rotateZ但没有运气..

编辑 - >问题没解决 - 请查看最新回复了解更多

您可以在附加的代码段中看到问题



String.equals(...)

#wrapper {
  background: orange;
  position: relative;
  width: 350px;
  height: 150px;
  font-family: sans-serif;
}

#elem {
  transition: all 500ms ease 0ms;
  transform: translate3d(-50%, -50%, 0); 
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 80%;
  height: auto;
  line-height: 30px;
  background: teal;
  color: white;
  
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  
  -webkit-font-smoothing: antialiased;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
#wrapper:hover #elem {
  transform: translate3d(-50%, -50%, 0) scale(1.3);  
}




1 个答案:

答案 0 :(得分:1)

尝试使用em定位技术而不是变换。似乎变换:translate()wa导致渲染问题。



#wrapper {
  font-size:15px;
  background: orange;
  position: relative;
  width: 300px;
  height: 150px;
  font-family: sans-serif;
  box-sizing:border-box;
  
}

#elem {
  transition: all 500ms ease 0ms;
  position: absolute;
  top: 50%;
  left: 0;
  display:block;
  text-align: center;
  width: 80%;
  margin: -1em 10% 0;
  height: auto;
  line-height: 2em;
  background: teal;
  color: white;
}
#wrapper:hover #elem {
 font-size:1.3em
}

<div id="wrapper">
  <div id="elem">Lorem Ipsum dolor</div>
</div>
&#13;
&#13;
&#13;