gpt4 book ai didi

HTML + CSS 无限滚动背景 : Flicker on Safari at repeat

转载 作者:行者123 更新时间:2023-12-04 11:39:35 25 4
gpt4 key购买 nike

我正在创建一个带有一堆滚动层(前景、中景、背景等)的场景,但令人讨厌的是,当动画重新启动时,我在 Safari (14.0.3) 上出现闪烁。这不会发生在 Chrome 或 Firefox 上。
我在这里创建了一个最小的可重现示例:
https://brendon.github.io/safari_flicker/index.html
这是代码:

.animation {
position: relative;
height: 395px;
background-image: linear-gradient(#1b9dd9, #00b6ed 44%, #ffe56c 75%);
}

.animation .scrollingAnimation {
position: absolute;
overflow: hidden;
height: 100%;
width: 100%;
}

.animation .scrollingAnimation:before {
content: "";
position: absolute;
height: 100%;
width: 200%;
}

.animation .foreground:before {
/* Dimensions: */
/* width: 1696px; */
/* height: 74px; */
min-width: 6784px;
background-image: url("https://brendon.github.io/safari_flicker/foreground.png");
background-position: left bottom -11px;
background-repeat: repeat-x;
background-size: auto 74px;
transform: translateX(-1696px);
animation: foreground 10s linear infinite;
}

@keyframes foreground {
0% {
transform: translateX(-1696px);
}
to {
transform: translateX(-3392px);
}
}
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>

<div class="animation">
<div class="foreground scrollingAnimation"></div>
</div>

</body>

</html>

这是该问题的视频:
https://github.com/brendon/safari_flicker/raw/main/flicker_video.mp4
我已经尝试了很多方法来摆脱这个问题。根据窗口宽度,它似乎有时会消失,但我正在寻找一个可靠的解决方案:D
iOS Safari 上也存在此问题。
我应该提到我不想为 background-position 设置动画属性,因为这会导致性能问题并且不会被 GPU 加速。

最佳答案

你有没有想过使用具有相同图像和动画的 2 个元素,并抵消 - 使用延迟 - 第一个元素动画 -duration / 2 ?
这个想法是在任何时候屏幕上都有其中一个,并且任何渲染延迟都不应该是可见的。
见下文,我正在为两个伪元素设置动画。

html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}

.animation, .foreground {
height: 100%;
width: 100%;
background: black;
}

.foreground:before, .foreground:after {
height: 100%;
width: 200%;

position: absolute;
top: 0;

display: flex;
align-items: center;
justify-content: center;
font-size: 50vmin;
}

.foreground {
position: relative;
overflow-x: hidden;
}

.foreground:before {
content: 'A';
background: red;

animation: 10s linear -5s infinite foreground;
}

.foreground:after {
content: 'B';
background: blue;

animation: 10s linear 0s infinite foreground;
}

@keyframes foreground {
0% {
transform: translateX(100%);
}
to {
transform: translateX(-100%);
}
}
<div class="animation">
<div class="foreground scrollingAnimation"></div>
</div>

关于HTML + CSS 无限滚动背景 : Flicker on Safari at repeat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67562381/

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