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

CSSの不透明度でアニメーションを実行する


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

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo1 {
            position: absolute;
            top: 60px;
            width: 300px;
            height: 150px;
            background-color: lightblue;
            animation: myanim 4s infinite;
         }
         #demo2 {
            position: absolute;
            top: 90px;
            left: 30px;
            width: 300px;
            height: 150px;
            background-color: orange;
            animation: myanim 3s infinite;
         }
         #demo3 {
            position: absolute;
            top: 120px;
            left: 60px;
            width: 350px;
            height: 150px;
            background-color: coral;
         }
         @keyframes myanim {
            30% {
               opacity: 0.4;
            }
         }
      </style>
   </head>
   <body>
      <p>Showing opacity</p>
      <div id = "demo1"><h1>End div</h1></div>
      <div id = "demo2"></div>
      <div id = "demo3"><h1>Start div</h1></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