微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

html – CSS转换在Edge中不起作用

我遇到了以下问题.

this site that I created,我有一个位于页面底部的图库.如果我将鼠标悬停在拇指上,它们会疯狂地飞来飞去,这不是我想要的.它就像其他浏览器的魅力一样;只有Microsoft Edge受到影响.

有人可以帮助我让图像按预期运行吗?

CSS看起来像这样:

.node-gallery {
   float: left;
   width: 150px;
   height: 150px;
   position: relative;
   margin: 0 60px 50px 0;
}

.node-gallery img {
   position: absolute;
   bottom: 0px;
}

.node-gallery .image1 {
   left: 0px;
   z-index: 3;
   -webkit-transition: all 0.2s ease;
   -moz-transition: all 0.2s ease;
   -o-transition: all 0.2s ease
}

.node-gallery .image2 {
   left: 7px;
   height: 148px;
   z-index: 2;
   -webkit-transition: all 0.2s ease;
   -moz-transition: all 0.2s ease;
   -o-transition: all 0.2s ease
}

.node-gallery .image3 {
   left: 14px;
   height: 145px;
   z-index: 1;
   -webkit-transition: all 0.2s ease;
   -moz-transition: all 0.2s ease;
   -o-transition: all 0.2s ease
}

.image1,.image2,.image3 {
   border: 5px solid #F3F3F3!important;
   Box-shadow: 1px 1px 2px #666;
   -webkit-shadow: 1px 1px 2px #666;
   -webkit-transform: rotate(0deg) translate(0px);
}

.node-gallery:hover .image1 {
   z-index: 6;
   -ms-transform: rotate(-5deg) translate(-20px,-2px);
   -ms-transform-origin: center bottom;
   -webkit-transform: rotate(-5deg) translate(-20px,2px);
   -webkit-transform-origin: center bottom;
   -moz-transform: rotate(-5deg) translate(-20px,-2px);
   -moz-transform-origin: center bottom;
   -o-transform: rotate(-5deg) translate(-20px,-2px);
   -o-transform-origin: center bottom;
}

.node-gallery:hover .image2 {
   z-index: 5;
   -ms-transform: rotate(-2deg) translate(0px,2px);
   -ms-transform-origin: center bottom;
   -webkit-transform: rotate(-2deg) translate(0px,-2px);
   -webkit-transform-origin: center bottom;
   -moz-transform: rotate(-2deg) translate(0px,2px);
   -moz-transform-origin: center bottom;
   -o-transform: rotate(-2deg) translate(0px,2px);
   -o-transform-origin: center bottom;
}

.node-gallery:hover .image3 {
   z-index: 4;
   -ms-transform: rotate(5deg) translate(20px,-2px);
   -ms-transform-origin: center bottom;
   -webkit-transform: rotate(5deg) translate(20px,2px);
   -webkit-transform-origin: center bottom;
   -moz-transform: rotate(5deg) translate(20px,-2px);
   -moz-transform-origin: center bottom;
   -o-transform: rotate(5deg) translate(20px,-2px);
   -o-transform-origin: center bottom;
}

解决方法

几个月后,我相信我刚遇到同样的错误并找到了解决方案.看起来Microsoft Edge 13在解释一些通常可接受的transform-origin值时遇到了问题.特别是对我来说,它忽略了正确的价值中心,但是左上角正常工作,让我相信中心值(我在示例代码中看到的)可能是问题所在.

对我来说,修复是使用百分比值,因此transform-origin:center bottom将变为transform-origin:50%100%.希望这可以帮助遇到此问题的任何人.

请注意,尽管提出了ms-前缀的最高投票答案,但这个问题是关于最近的MS Edge浏览器,并且自Internet Explorer 9以来不需要该前缀用于转换属性(每caniuse.com).

原文地址:https://www.jb51.cc/html/227505.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐