gpt4 book ai didi

Google Chrome 中的 CSS 转换延迟

转载 作者:行者123 更新时间:2023-11-28 10:12:13 25 4
gpt4 key购买 nike

当您将鼠标悬停在圆上时,文本颜色应与旋转和背景颜色同时改变。

Firefox、IE、Edge 都按预期进行动画处理,但 Chrome 会延迟文本颜色的转换,就好像它在等待旋转完成后再进行动画处理,甚至在旋转和文本颜色变化之间留下间隙。

http://codepen.io/rachelreveley/pen/YNZawG

body {
text-align: center;
background-color: #122d40;
}
a {
display: inline-block;
width: 20rem;
height: 20rem;
margin: 1rem;
transition: all 1s ease;
position: relative;
border-radius: 100%;
text-decoration: none;
color: #fff;
overflow: hidden;
background-color: #7fb400;
transform: rotate(0deg);
}
a > span,
a span span {
display: block;
transition: inherit;
}
a span span:first-child {
position: absolute;
width: 100%;
height: 100%;
top: 40%;
text-transform: uppercase;
font-size: 40px;
}
a span span:last-child {
opacity: 0;
padding: 2rem 3rem;
}
a:hover {
background-color: #fff;
color: #122d40;
transform: rotate(360deg);
}
a:hover span span:first-child {
opacity: 0;
}
a:hover span span:last-child {
opacity: 1;
}
 
<a href=""><span><span>Space</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span> </span></a>
<a href=""><span><span>Speed</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span></span></a>
<a href=""><span><span>Support</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span></span></a>

最佳答案

问题出在这里:

a > span,
a span span {
transition: inherit;
}

是否真的需要这种转变?尝试删除属性。

body {
text-align: center;
background-color: #122d40;
}
a {
display: inline-block;
width: 20rem;
height: 20rem;
margin: 1rem;
transition: all 1s ease;
position: relative;
border-radius: 100%;
text-decoration: none;
color: #fff;
overflow: hidden;
background-color: #7fb400;
transform: rotate(0deg);
}
a > span,
a span span {
display: block;
}
a span span:first-child {
position: absolute;
width: 100%;
height: 100%;
top: 40%;
text-transform: uppercase;
font-size: 40px;
}
a span span:last-child {
opacity: 0;
padding: 2rem 3rem;
}
a:hover {
background-color: #fff;
color: #122d40;
transform: rotate(360deg);
}
a:hover span span:first-child {
opacity: 0;
}
a:hover span span:last-child {
opacity: 1;
}
<a href=""><span><span>Space</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span> </span></a>
<a href=""><span><span>Speed</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span></span></a>
<a href=""><span><span>Support</span><span><h1>Lorem ipsum</h1> dolor sit amet, consectetur adipiscing elit. Ita nemo beato beatior. Si longus, levis; Utinam quidem dicerent alium alio beatiorem! Iam alium alio ruinas videres. Tamen a proposito, inquam, aberramus. </span></span></a>

关于Google Chrome 中的 CSS 转换延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43326216/

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