gpt4 book ai didi

CSS3 变换 - 缩放动画有时会在 Chrome 上回弹

转载 作者:行者123 更新时间:2023-11-28 07:15:14 26 4
gpt4 key购买 nike

当我将鼠标反复悬停在两张图片上时,缩放动画有时会回弹。但是,缩放动画在 Firefox 上运行良好。我做错了什么?

ul li .image{
display:inline-block;
-webkit-transition: .2s ease-in-out;
-moz-transition: .2s ease-in-out;
-o-transition: .2s ease-in-out;
transition: .2s ease-in-out;

-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
ul li:hover .image{
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}

这里是 example在 jsfiddle 上

最佳答案

我刚刚为 :hover 添加了 width:100.1%height:100.% 然后它再次在 Chrome 上完美运行。它应该是某种 css hack,但它对我有用,这是更新代码

ul li .image{
display:inline-block;
width:100%;
height:100%;
-webkit-transition: .2s ease-in-out;
-moz-transition: .2s ease-in-out;
-o-transition: .2s ease-in-out;
transition: .2s ease-in-out;

-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
ul li:hover .image{
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
width:100.1%;
height:100.1%;
}

关于CSS3 变换 - 缩放动画有时会在 Chrome 上回弹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32389202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com