css3 animation-iteration-count属性


  翻訳結果:

animation

英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]

n. 怒っている、活発、漫画制作、漫画撮影、[映画とテレビ] アニメーション

複数形: animes

iteration

## English[ˌɪtəˈreɪʃn] US[ˌɪtəˈreʃən]

n. 繰り返す; 言い直す; 物事を言い直す; [コンピューター] ] サイクル

#count

UK[kaʊnt] US[kaʊnt]

n.合計数; カウント; カウント; 引数

v. 数える; 合計を計算する; count...; 重要

三人称単数形: counts 複数形: counts 現在分詞: counting 過去形: counted 過去分詞: counted

css3 animation-iteration-count属性構文

関数:animation-iteration-count 属性は、アニメーションが再生される回数を定義します。

構文: animation-iteration-count: n|infinite;

説明: n アニメーションの再生回数を定義します。無限は、アニメーションを無限に再生することを指定します。

注: Internet Explorer 9 以前のバージョンでは、animation-iteration-count プロパティがサポートされていません。

無限ループ再生は、CSS3 のanimation-iteration-count 属性の値を無限に設定することで実行できます。アニメーションの再生時間をカスタマイズすることもできます

css3 animation-iteration-count属性例

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove 3s;
animation-iteration-count:3;

/* Safari and Chrome */
-webkit-animation:mymove 3s;
-webkit-animation-iteration-count:3;
}

@keyframes mymove
{
from {top:0px;}
to {top:200px;}
}

@-webkit-keyframes mymove /* Safari and Chrome */
{
from {top:0px;}
to {top:200px;}
}
</style>
</head>
<body>

<p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p>

<div></div>

</body>
</html>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します

人気のおすすめ

ホームページ

ビデオ

に質問