gpt4 book ai didi

css - @-webkit-keyframes 使用带旋转的-webkit-transform 闪烁

转载 作者:行者123 更新时间:2023-11-28 17:42:13 24 4
gpt4 key购买 nike

我有以下关键帧:

@-webkit-keyframes spin {  
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}}

这里引用的是:

-webkit-animation-name: spin; 
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-duration: 3s;

这本质上只是在模仿旋转的乙烯基。它在桌面浏览器上看起来很完美,但我注意到在 iPhone 上的 Safari 和 Chrome 上右上角有一些闪烁。我尝试了其他一些我发现但没有运气的解决方案。任何帮助都会很棒。

编辑

元素的 CSS:

#vinyl {
background-image: url(../img/vinyl_vector.png);
width: 2140px;
height: 2140px;
background-size: cover;
background-position: center center;
-webkit-animation-name: spin;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-duration: 3s;

position: absolute;
top: -1700px;
left: 50%;
margin-left: -1070px;
z-index: 1;
overflow: hidden;
}

最佳答案

我只是通过将背景图像变成#vinyl 的子“img”来解决这个问题。不知道为什么会发生这个问题!

关于css - @-webkit-keyframes 使用带旋转的-webkit-transform 闪烁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23880994/

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