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

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


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

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            position: absolute;
            width: 300px;
            height: 200px;
            background-color: orange;
            color: white;
            top: 0;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               top: 300px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS top property</h1>
      <div>
         <h1>This is demo text!</h1>
      </div>
   </body>
</html>

  1. CSSアニメーションを使用して変換プロパティをアニメーション化する

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

  2. CSSアニメーションを使用してvertical-alignプロパティをアニメーション化する

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