html5関連のメモです。
css3のwebkitアニメーションで、再生回数を制限したいときは、-webkit-animation-iteration-count を設定すればできます。
繰り返したくないときは、下記のように1を設定すれば大丈夫です。
-webkit-animation-iteration-count: 1;
無制限にループさせたいときは、下記のようにinfiniteと設定。
-webkit-animation-iteration-count: infinite;
Just another WordPress site
html5関連のメモです。
css3のwebkitアニメーションで、再生回数を制限したいときは、-webkit-animation-iteration-count を設定すればできます。
繰り返したくないときは、下記のように1を設定すれば大丈夫です。
-webkit-animation-iteration-count: 1;
無制限にループさせたいときは、下記のようにinfiniteと設定。
-webkit-animation-iteration-count: infinite;