Je travaille sur un cœur animé uniquement avec CSS.
Je veux qu'il pulse 2 fois, qu'il fasse une petite pause, puis qu'il recommence.
Ce que j'ai maintenant :
small ==> big ==> small ==> repeat animation
Ce que je cherche :
small ==> big ==> small ==> big ==> small ==> pause ==> repeat animation
Comment puis-je le faire ?
Mon code :
#button{
width:450px;
height:450px;
position:relative;
top:48px;
margin:0 auto;
text-align:center;
}
#heart img{
position:absolute;
left:0;
right:0;
margin:0 auto;
-webkit-transition: opacity 7s ease-in-out;
-moz-transition: opacity 7s ease-in-out;
-o-transition: opacity 7s ease-in-out;
transition: opacity 7s ease-in-out;}
@keyframes heartFadeInOut {
0% {
opacity:1;
}
14% {
opacity:1;
}
28% {
opacity:0;
}
42% {
opacity:0;
}
70% {
opacity:0;
}
}
#heart img.top {
animation-name: heartFadeInOut;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
animation-duration: 1s;
animation-direction: alternate;
}
<div id="heart" >
<img class="bottom" src="https://goo.gl/nN8Haf" width="100px">
<img class="top" src="https://goo.gl/IIW1KE" width="100px">
</div>
Voir aussi ce violon .
3 votes
Y a-t-il une raison pour laquelle vous avez utilisé jsfiddle au lieu d'un Stack Snippet intégré dans la question ? D'après ce que je peux voir, le Stack Snippet fonctionne bien pour votre exemple.
0 votes
Animation du cœur avec le pouls : youtu.be/Jq4diUd10Zs