CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

最初にアニメーションを逆方向に実行し、次にCSSで順方向に実行します


アニメーション方向を使用します 最初に後方にアニメーションを実行し、次に前方にアニメーションを実行するプロパティ。プロパティはalternate-reverseで使用されます これを達成するためのアニメーションの価値。

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-direction: alternate-reverse;
            animation-iteration-count: 3;
         }
         @keyframes myanim {
            0% {background-color:green; left:0px; top:0px;}
            50% {background-color:maroon; left:100px; top:100px;}
            100% {background-color:gray; left:0px; top:0px;}
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

  1. CSSでアニメーションを遅らせる方法

    アニメーションを遅らせるには、CSS animation-delayを使用します 財産。次のコードを実行して、アニメーションを遅らせることができます 例 <!DOCTYPE html> <html>    <head>       <style>          div {             width: 150px;         &n

  2. アニメーションを使用したCSSのトッププロパティ

    アニメーションをtopに実装するには CSSでプロパティを使用すると、次のコードを実行してみることができます- 例 <!DOCTYPE html> <html>    <head>       <style>          div {             position: absolute;