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

CSStransition-delayプロパティの使用


transition-delayを使用します CSSで遷移効果を遅らせるプロパティ。次のコードを実行して、遷移の1秒の遅延を設定することができます

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 150px;
            background: blue;
            transition: width 3s;
            transition-delay: 1s;
         }
         div:hover {
            width: 250px;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Hover over the below box to change its width. It begins with a delay of 1 second.</p>
      <div></div>
   </body>
</html>

  1. CSSパースペクティブプロパティの使用

    3D要素の表示方法に関するパースペクティブを指定するには、CSSパースペクティブプロパティを使用します。 次のコードを実行して、パースペクティブプロパティを操作できます。 例 <!DOCTYPE html> <html>    <head>       <style>          .demo1 {             position: relative;   &nb

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

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