gpt4 book ai didi

animation - 如何跨多个元素同步 CSS 动画?

转载 作者:技术小花猫 更新时间:2023-10-29 10:10:19 26 4
gpt4 key购买 nike

我想通过 CSS(特别是 -webkit-animation)为页面上的两个元素设置动画。动画本身只是简单地上下弹跳一个元素。一个元素始终显示并弹跳,另一个元素直到鼠标悬停(悬停)才显示动画。

我的问题是:无论第二个元素的动画何时开始,是否可以跨两个元素同步(让两个元素同时到达顶点等)动画?

这是我的 HTML:

<div id="bouncy01">Drip</div>
<div id="bouncy02">droP</div>

和我的 CSS:

@-webkit-keyframes bounce {
0% {-webkit-transform: translateY(0px);}
25% {-webkit-transform: translateY(-2px);}
50% {-webkit-transform: translateY(-4px);}
75% {-webkit-transform: translateY(-2px);}
100% {-webkit-transform: translateY(0px);}
}
#bouncy01,
#bouncy02 {
margin:10px;
float: left;
background: #ff0000;
padding: 10px;
border: 1px solid #777;
}
#bouncy01 {
-webkit-animation:bounce 0.25s ease-in-out infinite alternate;
}
#bouncy02 {
background: #ffff00;
}
#bouncy02:hover {
-webkit-animation:bounce 0.25s ease-in-out infinite alternate;
}

最后,问题的工作演示:http://jsfiddle.net/7ZLmq/2/

(要查看问题,请将鼠标悬停在黄色 block 上)

最佳答案

我不认为它本身是可能的,但你实际上可以通过使用弹跳包装器和一些位置改变来破解类似的功能

html:

<div id="bouncywrap">
<div id="bouncy01">Drip</div>
<div id="bouncy02">droP</div>
<div>

CSS:

@-webkit-keyframes bounce {
0% { padding-top:1px;}
/* using padding as it does not affect position:relative of sublinks
* using 0 instead of 0 b/c of a box-model issue,
* on kids wiht margin, but parents without margin, just try out
*/
50% { padding-top:5px;} /*desired value +1*/
100% { padding-top:1px;}
}

#bouncy01,
#bouncy02 {
margin:10px;
background: #ff0000;
padding: 10px;
border: 1px solid #777;
width:30px;
position:absolute;
}
#bouncywrap {
-webkit-animation:bounce 0.125s ease-in-out infinite;
position:relative;
width:140px;
height:50px;
/* background:grey; /*debug*/
}
#bouncy02 {
background: #ffff00;
left:60px;
top:2px; /*half of desired value, just a fix for the optic*/
}
#bouncy02:hover {
position:relative; /*here happens the magic*/
top:0px;
}

演示 http://jsfiddle.net/A92pU/1/

关于animation - 如何跨多个元素同步 CSS 动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4838972/

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