Animacja CSS pulsującego serca

83

Nad animowanym sercem pracuję tylko z CSS.

Chcę, żeby pulsował 2 razy, zrób małą przerwę, a następnie powtórz to ponownie.

Co mam teraz:

small ==> big ==> small ==> repeat animation

Po co mi:

small ==> big ==> small ==> big ==> small ==> pause ==> repeat animation

Jak mogę to zrobić?

Mój kod:

#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>

Zobacz także to Fiddle .

Fernando Souza
źródło
3
Czy jest jakiś powód, dla którego użyłeś jsfiddle zamiast fragmentu stosu zintegrowanego w pytaniu? O ile widzę, fragment stosu działa dobrze w twoim przykładzie.
Bakuriu,

Odpowiedzi:

118

Możesz włączyć pauzę do animacji. Tak jak to:

@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}

Przykład roboczy: https://jsfiddle.net/t7f97kf4/

Edytować:

Przykład roboczy z czystym kształtem serca CSS: https://jsfiddle.net/qLfg2mrd/

Wodza
źródło
10
@FernandoSouza Możesz także zrobić serce css bez obrazu - jsfiddle.net/qLfg2mrd
Anonymous
1
@ Anonimowy Dziękuję za to. Dodałem Twój link do mojej odpowiedzi.
Rein
Zakładam to Fiddle! Świetny sposób na zrobienie tego.
David Wilkinson
3
@DavidWilkinson Dodaj też do zakładek :) - css-tricks.com/examples/ShapesOfCSS :)
Anonymous
6
Masz na myśli postać ♥? To proste, po prostu zrób &hearts;. Nie ma potrzeby dla tych wszystkich transform.
Ismael Miguel
35

Pulsuj 2 razy, zrób małą przerwę, a następnie powtórz to ponownie

Spróbuj tego. opacityWybór animacji to zły wybór. transform: scale()wykona robotę.

.heart:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: 'icons';
  font-size: 21px;
  text-indent: 0;
  font-variant: normal;
  line-height: 21px;
}
.heart {
  position: relative;
  width: 500px;
  overflow: inherit;
  margin: 50px auto;
  list-style: none;
  -webkit-animation: animateHeart 2.5s infinite;
  animation: animateHeart 2.5s infinite;
}
.heart:before,
.heart:after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 120px;
    height: 200px;
    background: red;
    border-radius: 100px 100px 0 0;
  -webkit-transform: rotate(-45deg) translateZ(0);
  transform: rotate(-45deg) translateZ(0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.heart:after {
  left: 26%;
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
@-webkit-keyframes animateHeart {
  0% {
    -webkit-transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
  }
}
@keyframes animateHeart {
  0% {
    transform: scale(0.8);
  }
  5% {
    transform: scale(0.9);
  }
  10% {
    transform: scale(0.8);
  }
  15% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.8);
  }
}
span {
  font-family: 'Cantora One', sans-serif;
  font-size: 64px;
  position: absolute;
  top: 165px;
}
<div class="heart">
</div>

Jinu Kurian
źródło
1
W ostatecznym projekcie muszę użyć obrazów zamiast czystego CSS. Ale dzięki! Mogę użyć czasu twojej animacji, który jest doskonały!
Fernando Souza
nie robić różnicy. możesz skalować obraz również w ten sposób. Spróbuj :)
Jinu Kurian
Czy mogę w ten sposób zamienić obrazy lub zmienić obraz tła?
Fernando Souza
@FernandoSouza yup. Spróbuj. Pomogę Ci, jeśli napotkasz jakiś problem.
Jinu Kurian
Próbuję, ale najpierw zmieniam jakąś strukturę, ponieważ na sercu jest tekst i musi pozostać w tym samym rozmiarze.
Fernando Souza
22

Podoba mi się odpowiedź ketana , ale chciałem poprawić animację serca, aby była bardziej realistyczna.

  • Serce nie podwaja się, gdy bije. 10% zmiana rozmiaru wygląda dla mnie lepiej.
  • Lubię, gdy staje się zarówno większy, jak i mniejszy
  • Kiedy przestaje się poruszać, wydaje mi się martwy. Nawet jeśli nie bije, musi trochę się rozszerzyć lub skurczyć
  • Usunąłem kod „alternatywnych kierunków”, aby za każdym razem działał w ten sam sposób
  • Wyraźnie mam początek serca i koniec w normalnej skali (1) i mam animację w środku sekwencji. Wydaje mi się to jaśniejsze.

#heart img{
  position:absolute;
  left:0;
  right:0;
  margin:0 auto;
 }

 @keyframes heartFadeInOut {
  0% {transform: scale(1);}
  25% {transform: scale(.97);}
  35% {transform: scale(.9);}
  45% {transform: scale(1.1);}
  55% {transform: scale(.9);}
  65% {transform: scale(1.1);}
  75% {transform: scale(1.03);}
  100% {transform: scale(1);}
}

#heart img.bottom { 
  animation-name: heartFadeInOut; 
  animation-iteration-count: infinite;
  animation-duration: 2s;
}
<div id="heart" >
  <img class="bottom" src="https://i.stack.imgur.com/iBCpb.png" width="100px">
</div>

Stephen Ostermiller
źródło
6

Na podstawie różnych komentarzy i korzystając z ♥ otrzymamy to:

body {
  font-size: 40pt;
  color: red;
}
@keyframes heartbeat {
  0% {
    font-size: .75em;
  }
  20% {
    font-size: 1em;
  }
  40% {
    font-size: .75em;
  }
  60% {
    font-size: 1em;
  }
  80% {
    font-size: .75em;
  }
  100% {
    font-size: .75em;
  }
}
div {
  animation: heartbeat 1s infinite;
}
<div>
  &hearts;
</div>

Tom B.
źródło
6

body{
  margin: 0;
  padding: 0;
  background: #1f1f1f;
}

body:before
{
  position: absolute;
  content: '';
  left: 50%;
  width: 50%;
  height: 100%;
  background: rgba(0,0,0,.2);

}

.center
{
  position: absolute;
  top:50%;
  left: 50%;
  background: #1f1f1f;
  transform: translate(-50%,-50%);
  padding: 100px;
  border: 5px solid white;
  border-radius: 100%;
  box-shadow:20px 20px 45px rgba(0,0,0,.4);
  z-index: 1;
  overflow: hidden;
}
.heart
{
  position: relative;
  width: 100px;
  height: 100px;
  background:#ff0036;
  transform: rotate(45deg) translate(10px,10px);
  animation: ani 1s linear infinite;
}
.heart:before
{
  content: '';
  width: 100%;
  height: 100%;
  background: #ff0036;
  position: absolute;
  top:-50%;
  left:0;
  border-radius: 50%;
}
.heart:after
{
  content:'';
  width: 100%;
  height: 100%;
  background: #ff0036;
  position: absolute;
  bottom:0;
  right:50%;
  border-radius: 50%;
}
.center:before
{
  content: '';
  position: absolute;
  top:0;
  left:-50%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
}

@keyframes ani{
  0%{
    transform: rotate(45deg) translate(10px,10px) scale(1);
  }
  25%{
    transform: rotate(45deg) translate(10px,10px) scale(1);
  }
  30%{
    transform: rotate(45deg) translate(10px,10px) scale(1.4);
  }
  50%{
    transform: rotate(45deg) translate(10px,10px) scale(1.2);
  }
  70%{
    transform: rotate(45deg) translate(10px,10px) scale(1.4);
  }
  90%{
    transform: rotate(45deg) translate(10px,10px) scale(1);
  }
  100%{
    transform: rotate(45deg) translate(10px,10px) scale(1);
  }
}
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HeartBeat Animation</title>
    <link rel="stylesheet" href="Style.css" type="text/css">
  </head>
  <body>
    <div class="center">
      <div class="heart">
        
      </div>
    </div>
  </body>
</html>

Wynik

więcej: Animacja bicia serca

Arpit Soni
źródło
4

Myślę, że właśnie tego chcesz do animacji obrazu. Nie ma potrzeby posiadania najlepszego obrazu. Po prostu użyj dołu.

#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;
 }

 @keyframes heartFadeInOut {
  0%
  {    transform: scale( .5 );  }
  20%
  {    transform: scale( 1 );  }
  40%
  {    transform: scale( .5 );  }
  60%
  {    transform: scale( 1 );  }
  80%
  {    transform: scale( .5 );  }
  100%
  {    transform: scale( .5 );  }
}

#heart img.bottom { 
  animation-name: heartFadeInOut; 
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  animation-direction: alternate;

}
<div id="heart" >
  <img class="bottom" src="https://goo.gl/nN8Haf" width="100px">
</div>

ketan
źródło
9
Twoje serce ma łagodną arytmię w Chrome?
@LegoStormtroopr Więc to nie tylko ja. Dlaczego chrom? Czemu?
Jaca
2
Nie jestem pewien, może to być zatoka spojenia serca, ale warto skonsultować się z ekspertem CSS, aby uzyskać lepszą diagnozę.
1

Potrzebowałem tego do projektu, nad którym pracowałem. Starałem się, aby wyglądało to jak najbardziej realistycznie i to właśnie wymyśliłem.

@keyframes heartbeat {
    0% {
        transform: scale( .95 );
    }

    20% {
        transform: scale( .97 );
    }

    30% {
        transform: scale( .95 );
    }

    40% {
        transform: scale( 1 );
    }

    100% {
        transform: scale( .95 );
    }
}

animation: heartbeat 1s infinite;

Daniel Dewhurst
źródło