css3 transform:translatex(-100%);在IE11&中无法正常工作边缘

时间:2017-10-24 13:32:55

标签: html css css3 css-transitions css-transforms

在Internet Explorer 11和Edge中移动到transform: translatex(-100%);的容器transform: translatex(0);无法正常工作。内容移动但是当触摸鼠标时它会返回。

.widget {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
  transition: all 1.5s;
  max-height: 400px;
  left: 0;
  transform: translatex(-100%);
}
.widget:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transform: translatex(0);
}

演示:https://codepen.io/anon/pen/MEMKKL

1 个答案:

答案 0 :(得分:1)

如前所述,您需要为浏览器支持添加前缀-ms-。

供参考,您可以使用:https://caniuse.com/#search=transform