perspectiveプロパティは、要素にtransform効果を適用するときの奥行きの深さを指定する際に使用します。
奥行きの深さは数値で指定します。初期値は none です。
perspectiveプロパティの値に none 、または、0以下のを指定した場合には、変形の際に奥行きが適用されません。
perspectiveプロパティによる指定は、
基本的には、transform:perspective(数値)
を指定した場合と同じ変形効果となりますが、perspectiveプロパティを指定した要素自身ではなく、
その子要素で位置や変形を指定されたものにだけ適用される点が異なります。
p.sample1, p.sample2 {background-color:limegreen;}
p.sample1 {perspective:500;}
p.sample1 img, p.sample2 img{transform: rotateY(70deg);}
<html>
<head>
<link rel=”stylesheet” href=”sample.css” type=”text/css”>
</head>
<body>
<<p class=”sample1″>
perspective:500;を指定して、Y軸70度回転<br>
<img src=”https://www.htmq.com/wp-content/uploads/2024/07/kaeru.gif”>
</p>
<p class=”sample2″>
perspectiveプロパティの指定なしで、Y軸70度回転<br>
<img src=”https://www.htmq.com/wp-content/uploads/2024/07/kaeru.gif”>
</p>
</body>
</html>
perspective:500;を指定して、Y軸70度回転
perspectiveプロパティの指定なしで、Y軸70度回転
p.prefix_sample1, p.prefix_sample2 {background-color:limegreen;}
p.prefix_sample1 {
-moz-perspective:500;
-webkit-perspective:500;
-o-perspective:500;
-ms-perspective:500;
}
p.prefix_sample1 img, p.prefix_sample2 img{
-moz-transform: rotateY(70deg);
-webkit-transform: rotateY(70deg);
-o-transform: rotateY(70deg);
-ms-transform: rotateY(70deg);
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”prefix_sample1″>
perspective:500;を指定して、Y軸70度回転<br>
<img src=”https://www.htmq.com/wp-content/uploads/2024/07/kaeru.gif”>
</p>
<p class=”prefix_sample2″>
perspectiveプロパティの指定なしで、Y軸70度回転<br>
<img src=”https://www.htmq.com/wp-content/uploads/2024/07/kaeru.gif”>
</p>
</body>
</html>
perspective:500;を指定して、Y軸70度回転
perspectiveプロパティの指定なしで、Y軸70度回転