1. このページの目的
CSS の perspective プロパティを試します。
perspective - CSS: カスケーディングスタイルシート | MDN に載っているサンプルを試します。
2. perspective, perspective-origin プロパティ
perspective
は CSS のプロパティで、 z=0 の平面とユーザーとの間の距離を定めて三次元に配置された要素に遠近感を与えます。
CSS のperspective-origin
プロパティは、閲覧者の視点の位置を決めます。これはperspective
プロパティによって消失点として使われます。
3. デモ
3-1. コード
HTML
<table>
<tbody>
<tr>
<th><code>perspective: 250px;</code>
</th>
<th><code>perspective: 350px;</code>
</th>
</tr>
<tr>
<td>
<div class="container">
<div class="cube pers250">
<div class="face front">1</div>
<div class="face back">2</div>
<div class="face right">3</div>
<div class="face left">4</div>
<div class="face top">5</div>
<div class="face bottom">6</div>
</div>
</div>
</td>
<td>
<div class="container">
<div class="cube pers350">
<div class="face front">1</div>
<div class="face back">2</div>
<div class="face right">3</div>
<div class="face left">4</div>
<div class="face top">5</div>
<div class="face bottom">6</div>
</div>
</div>
</td>
</tr>
<tr>
<th><code>perspective: 500px;</code>
</th>
<th><code>perspective: 650px;</code>
</th>
</tr>
<tr>
<td>
<div class="container">
<div class="cube pers500">
<div class="face front">1</div>
<div class="face back">2</div>
<div class="face right">3</div>
<div class="face left">4</div>
<div class="face top">5</div>
<div class="face bottom">6</div>
</div>
</div>
</td>
<td>
<div class="container">
<div class="cube pers650">
<div class="face front">1</div>
<div class="face back">2</div>
<div class="face right">3</div>
<div class="face left">4</div>
<div class="face top">5</div>
<div class="face bottom">6</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
CSS
/* さまざまな perspective の値のためのショートハンドクラス */
.pers250 {
perspective: 250px;
}
.pers350 {
perspective: 350px;
}
.pers500 {
perspective: 500px;
}
.pers650 {
perspective: 650px;
}
/* コンテナーの div、立方体の div、面の一般的な設定 */
.container {
width: 200px;
height: 200px;
margin: 75px 0 0 75px;
border: none;
}
.cube {
width: 100%;
height: 100%;
backface-visibility: visible;
perspective-origin: 150% 150%;
transform-style: preserve-3d;
}
.face {
display: block;
position: absolute;
width: 100px;
height: 100px;
border: none;
line-height: 100px;
font-family: sans-serif;
font-size: 60px;
color: white;
text-align: center;
}
/* 方向に基づいてそれぞれの面を設定 */
.front {
background: rgba(0, 0, 0, 0.3);
transform: translateZ(50px);
}
.back {
background: rgba(0, 255, 0, 1);
color: black;
transform: rotateY(180deg) translateZ(50px);
}
.right {
background: rgba(196, 0, 0, 0.7);
transform: rotateY(90deg) translateZ(50px);
}
.left {
background: rgba(0, 0, 196, 0.7);
transform: rotateY(-90deg) translateZ(50px);
}
.top {
background: rgba(196, 196, 0, 0.7);
transform: rotateX(90deg) translateZ(50px);
}
.bottom {
background: rgba(196, 0, 196, 0.7);
transform: rotateX(-90deg) translateZ(50px);
}
/* テーブルの見栄えをよくする */
th, p, td {
background-color: #EEEEEE;
padding: 10px;
font-family: sans-serif;
text-align: left;
}
3-2. 結果
perspective: 250px;
|
perspective: 350px;
|
---|---|
1
2
3
4
5
6
|
1
2
3
4
5
6
|
perspective: 500px;
|
perspective: 650px;
|
1
2
3
4
5
6
|
1
2
3
4
5
6
|
perspective
とtransform
を使うことによって、6つの面を立体的に表示できている。- この立体を表示させているCSSを理解するのは骨の折れる作業であり、私もなんとなくしか理解していない。
4. 参考
- CSS Transforms Module Level 2
- perspective - CSS: カスケーディングスタイルシート | MDN
- perspective-origin - CSS: カスケーディングスタイルシート | MDN
- transform - CSS: カスケーディングスタイルシート | MDN
- translateZ() - CSS: Cascading Style Sheets | MDN
- rotateY() - CSS: Cascading Style Sheets | MDN
- transform-style - CSS: Cascading Style Sheets | MDN
- backface-visibility - CSS: Cascading Style Sheets | MDN
- 消失点 - Wikipedia