gpt4 book ai didi

html - CSS 3 - 缩放过渡在谷歌浏览器中快速返回

转载 作者:可可西里 更新时间:2023-11-01 13:33:07 26 4
gpt4 key购买 nike

我有一个问题,我有以下代码用于使用 CSS3 过渡增加比例,最后它在增加后快速恢复到原来的比例。

CSS:

.big{


transition:all 0.3s ease-in-out;
display:inline;
}
.big:hover{

-webkit-transform:scale(1.4);
}

HTML:

<h1 class = "big">Typo</h1>

最佳答案

尝试使用 inline-block 而不是 inline(另外,建议也增加对其他浏览器的兼容性)。

CSS:

.big {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
display: inline-block;
}
.big:hover {
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
-o-transform: scale(1.4);
transform: scale(1.4);
}

HTML:

<h1 class="big">Typo</h1>

在这里测试:http://jsfiddle.net/XbUC8/

关于html - CSS 3 - 缩放过渡在谷歌浏览器中快速返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24834571/

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