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

CSSでトランジション効果を作成するにはどうすればよいですか?


トランジションエフェクトを作成するには、トランジションエフェクトのプロパティを設定します。それで効果の持続時間も設定します。

transition: height 5s;

次のコードを実行して、トランジション効果を作成してみてください

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

  1. CSSで視差スクロール効果を作成するにはどうすればよいですか?

    CSSで視差スクロール効果を作成するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans

  2. CSSで矢印を作成するにはどうすればよいですか?

    CSSで矢印を作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;