gpt4 book ai didi

javascript - HTML5 无尽的背景动画

转载 作者:太空宇宙 更新时间:2023-11-03 19:56:34 25 4
gpt4 key购买 nike

我有一个动画背景图片。

我怎样才能做无尽的动画?

(如果动画出现在页面右侧,我想看到它出现在页面左侧)

enter image description here

最佳答案

原始代码来自David Walsh - CSS Background Animations

@keyframes animatedBackground {
from {
background-position: 0 0;
}
to {
background-position: 100% 0;
}
}
#animate-area {
width: 560px;
height: 400px;
background-image: url(https://davidwalsh.name/demo/bg-clouds.png);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedBackground 40s linear infinite;
}
<div id="animate-area"></div>

关于javascript - HTML5 无尽的背景动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40190755/

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