CSS3 アニメーション キーフレームの概要
CSS3 での @keyframes の使用法の詳細な説明:
この属性は、アニメーション属性と密接に関連しています。アニメーション属性については、「CSS3 でのアニメーション属性の使用法の詳細な説明」の章を参照してください。
1. 基本知識:
キーフレームは中国語に翻訳すると「キーフレーム」を意味します。フラッシュを使用したことがある場合は、これをよく理解する必要があります。もちろん、フラッシュを知らなくても問題ありません。
トランジション属性を使用してトランジションアニメーション効果を実現することもできますが、アニメーションプロセスをより正確に制御できないため、少し荒くなります。たとえば、指定された期間内の特定の属性のトランジションを全体的に制御することしかできません。 @keyframes 属性を使用すると、指定された期間内のアニメーションをより細かく分割できます。
文法構造:
@keyframes animationname {keyframes-selector {css-styles;}}
パラメータ分析:
1.animationname: アニメーションの名前を宣言します。
2.keyframes-selector: アニメーションの継続時間を分割するために使用されます。パーセント形式を使用することも、「from」形式と「to」形式を使用することもできます。
「from」と「to」の形式は 0% と 100% に相当します。
常にパーセント形式を使用することをお勧めします。
2. コード例:
例 1:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.php.cn/" /> <title>php中文网</title> <style type="text/css"> div{ width:100px; height:100px; background:red; position:relative; animation:theanimation 5s infinite alternate; -webkit-animation:theanimation 5s infinite alternate ; -moz-animation:theanimation 5s infinite alternate ; -o-animation:theanimation 5s infinite alternate ; -ms-animation:theanimation 5s infinite alternate ; } @keyframes theanimation{ from {left:0px;} to {left:200px;} } @-webkit-keyframes theanimation{ from {left:0px;} to {left:200px;} } @-moz-keyframes theanimation{ from {left:0px;} to {left:200px;} } @-o-keyframes theanimation{ from {left:0px;} to {left:200px;} } @-ms-keyframes theanimation{ from {left:0px;} to {left:200px;} } </style> </head> <body> <div></div> </body> </html>
上のコードは、簡単な分析を示します:
1. @keyframes を使用して、theanimation という名前のアニメーションを定義します。
2. @keyframes で宣言されたアニメーション名はアニメーションと併用する必要があります。
3. from to は 0% ~ 100% に相当するため、1 つのことを 5 秒以内に行う必要があると規定されています。
例 2:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.php.cn/" /> <title>php中文网</title> <style type="text/css"> div{ width:100px; height:100px; background:red; position:relative; animation:theanimation 4s infinite alternate; -webkit-animation:theanimation 4s infinite alternate ; -moz-animation:theanimation 4s infinite alternate ; -o-animation:theanimation 4s infinite alternate ; -ms-animation:theanimation 4s infinite alternate ; } @keyframes theanimation{ 0%{top:0px;left:0px;background:red;} 25%{top:0px;left:100px;background:blue;} 50%{top:100px;left:100px;background:yellow;} 75%{top:100px;left:0px;background:green;} 100%{top:0px;left:0px;background:red;} } @-moz-keyframes theanimation{ 0% {top:0px;left:0px;background:red;} 25%{top:0px;left:100px;background:blue;} 50%{top:100px;left:100px;background:yellow;} 75%{top:100px;left:0px;background:green;} 100%{top:0px;left:0px;background:red;} } @-webkit-keyframes theanimation{ 0%{top:0px;left:0px;background:red;} 25%{top:0px;left:100px;background:blue;} 50%{top:100px;left:100px;background:yellow;} 75%{top:100px;left:0px;background:green;} 100%{top:0px;left:0px;background:red;} } @-o-keyframes theanimation{ 0%{top:0px;left:0px;background:red;} 25%{top:0px;left:100px;background:blue;} 50%{top:100px;left:100px;background:yellow;} 75%{top:100px;left:0px;background:green;} 100%{top:0px;left:0px;background:red;} } </style> </head> <body> <div></div> </body> </html>
上記のコードでは、アニメーションの継続時間をパーセンテージで分割し、指定された間隔内で指定された内容が実行されます。