gpt4 book ai didi

html - 2 div并排使用css - 一步

转载 作者:太空宇宙 更新时间:2023-11-04 12:17:35 25 4
gpt4 key购买 nike

如何并排放置两个div其中一个正在不断地上下 move 并包含 img

我试过这个:

 <div>
<div style="margin:30px;width:100px;height:250px;position:relative;float:left;background-color:red;">A</div>
<div style="margin:30px;width:100px;height:50px;position:relative;float:left;background-color:blue;">B</div>
</div>

我可以让 B div 上下 move 吗?

最佳答案

由于您使用 CSS 而不是 Jquery/Javascript 标记了这个问题,所以我正在使用 CSS 关键帧动画。是not supported in IE<=9 .

div.boxB {
-webkit-animation: move 5s linear infinite;
-moz-animation: move 5s linear infinite;
animation: move 5s linear infinite;
}

@-webkit-keyframes move {
0% {
margin-top: 30px;
}
25% {
margin-top: 100px;
}
50% {
margin-top: 180px;
}
75% {
margin-top: 100px;
}
100% {
margin-top: 30px;
}
}

@-moz-keyframes move {
0% {
margin-top: 30px;
}
25% {
margin-top: 100px;
}
50% {
margin-top: 180px;
}
75% {
margin-top: 100px;
}
100% {
margin-top: 30px;
}
}
@keyframes move {
0% {
margin-top: 30px;
}
25% {
margin-top: 100px;
}
50% {
margin-top: 180px;
}
75% {
margin-top: 100px;
}
100% {
margin-top: 30px;
}
}
<div>
<div style="margin:30px;width:100px;height:200px;position:relative;float:left;background-color:red;">A</div>
<div class="boxB" style="margin:30px;width:100px;height:50px;position:relative;float:left;background-color:blue;">B</div>
</div>

关于html - 2 div并排使用css - 一步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28584076/

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