gpt4 book ai didi

jquery - 动画 css 不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 11:42:42 24 4
gpt4 key购买 nike

我必须动态滑动移动图像。但它不起作用。这是我的 css 和 html 代码。

.demo-section{
background: url('http://xxxxx/images/homepages/faces.png') repeat scroll 0 0 transparent;
-webkit-animation: sliding 60s linear infinite;
-moz-animation: sliding 60s linear infinite;
-ms-animation: sliding 60s linear infinite;
-o-animation: sliding 60s linear infinite;
animation: sliding 60s linear infinite;
padding: 55px 0 45px;
}
<div class="demo-section">
<h1>Demo Content</h1>
</div>

最佳答案

希望这能解决你的问题,试试这个:

.demo-section{
background: url('http://xxxxx/images/homepages/faces.png') no-repeat scroll 0 0 transparent;
-webkit-transition: left 3s; /* For Safari 3.1 to 6.0 */
transition: left 3s;
left:10px;
position:relative;
padding: 55px 0 45px;
}

div:hover {
left: 100px;
}

谢谢。

关于jquery - 动画 css 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31200092/

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