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

CSSのパディングをアニメーション化-右プロパティ


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

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 350px;
            height: 150px;
            outline: 3px solid orange;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               padding-right: 60px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS padding-right property</h1>
      <div> </div>
   </body>
</html>

  1. CSSのz-indexプロパティをアニメーション化する

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

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

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