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

CSSのmargin-rightプロパティでアニメーションを実行する


CSSを使用してmargin-rightプロパティにアニメーションを実装するには、次のコードを実行してみてください

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: blue;
            animation: myanim 4s infinite;
            color: white;
         }
         @keyframes myanim {
            30% {
               margin-right: 30px;
            }
         }
      </style>
   </head>
   <body>
      <h2>Heading One</h2>
      <div>
         This is demo text.
      </div>
   </body>
</html>

  1. CSSパースペクティブプロパティでアニメーションを実行する

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

  2. CSSのpadding-topプロパティでアニメーションを実行する

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