パルスハートCSSアニメーション


83

私はCSSだけでアニメーションの心臓に取り組んでいます。

2回パルスし、少し休憩してから、もう一度繰り返します。

私が今持っているもの:

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

私が何をしようとしているのか:

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

どうすればいいですか?

私のコード:

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

このフィドルも参照してください。


3
質問に統合されたスタックスニペットの代わりにjsfiddleを使用した理由はありますか?私が見る限り、スタックスニペットはあなたの例ではうまく機能します。
バクリウ2016年

回答:


117

一時停止をアニメーションに組み込むことができます。そのようです:

@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 );
  }
}

実例:https//jsfiddle.net/t7f97kf4/

編集:

純粋なCSSハート型の実例:https//jsfiddle.net/qLfg2mrd/


10
@FernandoSouza画像なしでCSSハートを作成することもできます-jsfiddle.net/qLfg2mrd–
匿名

1
@Anonymousありがとうございます。私の答えにあなたのリンクを追加しました。
Rein 2016年

そのフィドルをブックマークしています!それを行うための素晴らしい方法。
デビッドウィルキンソン

3
@DavidWilkinsonこれもブックマークしてください:)- css-tricks.com/examples/ShapesOfCSS :)
匿名

6
つまり、♥キャラクター?それは簡単です、ただしてください&hearts;。それらすべての必要はありませんtransform
Ismael Miguel

35

2回パルスし、少し休憩してから、もう一度繰り返します

これを試して。アニメーションを使うのopacityは悪い選択です。transform: scale()仕事をします。

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


1
最終的なプロジェクトでは、純粋なCSSの代わりに画像を使用する必要があります。しかし、ありがとう!私はあなたのアニメーションのタイミングを使うかもしれません、それは完璧です!
フェルナンドソウザ2016年

違いはありません。この方法でも画像を拡大縮小できます。試してみてください:)
Jinu Kurian 2016年

この方法で画像を変更したり、背景画像を変更したりできますか?
フェルナンドソウザ

@FernandoSouzaうん。試してみる。問題が発生した場合は、私がお手伝いします。
Jinu Kurian 2016年

私は試していますが、心臓にテキストがあるので、最初にいくつかの構造を変更し、それは同じサイズのままでなければなりません。
フェルナンドソウザ2016年

22

ケタンの答えは好きですが、ハートのアニメーションをよりリアルに改善したかったのです。

  • 心臓が鼓動しても、心臓のサイズは2倍になりません。サイズの10%の変更は私には良く見えます。
  • 大きくなったり小さくなったりするのが好きです
  • それが完全に動くのをやめるとき、それは私には死んでいるように見えます。叩いていない時でも少し伸縮する必要があります
  • 「代替方向」コードを削除して、毎回同じように実行されるようにしました
  • 私は明示的に心臓の開始を終了し、通常のスケール(1)で、シーケンスの途中にアニメーションを配置しています。私にはその方法がより明確に思えます。

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


6

さまざまなコメントに基づいて、♥を利用してこれを取得します:

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>


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>

出力

詳細:ハートビートアニメーション


4

これがあなたのイメージアニメーションに欲しいものだと思います。トップ画像は必要ありません。底を使うだけです。

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


9
Chromeで心臓に軽度の不整脈がありますか?

@LegoStormtrooprだから、それは私だけではありません。なぜクロム?どうして?
ハカ2016年

2
よくわかりませんが、心臓副鼻腔炎の可能性がありますが、より良い診断のためにCSSの専門家に確認することをお勧めします。

1

私が取り組んでいたプロジェクトにこれが必要でした。私はそれをできるだけリアルに見せようとしていました、そしてこれが私が思いついたものです。

@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;

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.