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

CSSパースペクティブ-originプロパティ


パースペクティブオリジンプロパティを使用して、3D要素の下部の位置を指定します。

次のコードを実行して、perspective-originプロパティを実装してみてください。

<!DOCTYPE html>
<html>
   <head>
      <style>
        .demo1 {
            position: relative;
            width: 150px;
            height: 150px;
            background-color: yellow;
            perspective: 80px;
            margin: 50px;
            perspective-origin: left;
         }
         .demo2 {
            position: absolute;
            padding: 20px;
            background-color: orange;
            transform-style: preserve-3d;
            transform: rotateX(45deg);
         }
      </style>
   </head>

   <body>
      <h1>Rotation</h1>
      <div class = "demo1">Demo
         <div class = "demo2">Demo</div>
      </div>
   </body>
</html>

  1. CSSの位置:静的;

    位置:静的; プロパティは、要素の位置を静的に設定します。これがデフォルトです。 例 top、bottom、left、およびrightプロパティは、静的に配置された要素には影響しません。次のコードを実行して、CSSの position:static;を実装してみてください。 プロパティ <!DOCTYPE html> <html>    <head>       <style>          div.static {   &nbs

  2. CSSの位置:修正済み。

    位置:固定; プロパティを使用すると、ビューポートを基準にして要素を配置できます。次のコードを実行して、CSSの位置を実装してみてください。fixed; 例 <!DOCTYPE html> <html>    <head>       <style>          div{             position: fixed;       &nbs