Heim  >  Artikel  >  Web-Frontend  >  Was tun, wenn die CSS3-Animation nicht wiederholt wird?

Was tun, wenn die CSS3-Animation nicht wiederholt wird?

醉折花枝作酒筹
醉折花枝作酒筹Original
2021-07-23 11:38:563151Durchsuche

Wenn die CSS3-Animation nicht in einer Schleife läuft, können Sie mit dem Attribut „animation-iteration-count“ festlegen, wie oft die Animation abgespielt wird. Fügen Sie einfach „animation-iteration-count:infinite;“ zur Animation hinzu, um eine Endlosschleife zu erreichen.

Was tun, wenn die CSS3-Animation nicht wiederholt wird?

Die Betriebsumgebung dieses Tutorials: Windows7-System, CSS3- und HTML5-Version, Dell G3-Computer. Das Attribut „animation-iteration-count“ definiert die Häufigkeit, mit der die Animation abgespielt wird.

Grammatik

animation-iteration-count: n|infinite;

Was tun, wenn die CSS3-Animation nicht wiederholt wird?Beispiel

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

Effekt:

Was tun, wenn die CSS3-Animation nicht wiederholt wird?Empfohlenes Lernen:

CSS-Video-Tutorial

Das obige ist der detaillierte Inhalt vonWas tun, wenn die CSS3-Animation nicht wiederholt wird?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:So drehen Sie CSSNächster Artikel:So drehen Sie CSS