gpt4 book ai didi

css - 使用 CSS 无限循环动画图像

转载 作者:行者123 更新时间:2023-12-02 21:02:49 25 4
gpt4 key购买 nike

我有一张全宽的云图像 <div>元素。无论使用何种设备,我都想为云制作动画,使它们从左到右无限循环移动,当到达图像边缘时,图像再次开始。

我将如何完成这个?

(这里是云的图像;注意左边缘高度与右边缘高度匹配)

1

最佳答案

*{
margin:0;
padding:0;
}
@keyframes ani{
0%{background-position: 0 0;}
100%{background-position: 100vw 0;}
}
div{
background:url(http://i.stack.imgur.com/iofJk.png) repeat-x 0 / 100% auto;
height:500px; /* this value is not important, just not zero */
animation: ani 10s linear infinite ;
}
<div></div>

关于css - 使用 CSS 无限循环动画图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37449940/

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