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

CSSの幅のプロパティをアニメーション化


でアニメーションを実装するには CSSでプロパティを使用すると、次のコードを実行してみることができます-

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 300px;
            height: 250px;
            background-color: maroon;
            color: white;
            animation: myanim 3s;
         }
         @keyframes myanim {
            30% {
               width: 500px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS width property</h1>
      <div>
         <h1>This is demo text!</h1>
      </div>
   </body>
</html>

  1. CSSのアウトラインオフセットプロパティをアニメーション化する

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

  2. CSSのtext-decoration-colorプロパティをアニメーション化する

    CSSを使用してtext-decorationプロパティにアニメーションを実装するには、次のコードを実行してみてください- 例 <!DOCTYPE html> <html>    <head>       <style>          #demo {             position: absolute;           &