Breaking

Tuesday, May 7, 2013

CSS perspective-origin

perspective-origin 3

Thông thường khi nhìn một thành phần ta sẽ thấy thành phần có dạng 2D (chiều rộng và chiều cao), để nhìn vật thể 3D ta cần có thêm chiều sâu, thuộc tính perspective sẽ cho ta thấy được chiều sâu của thành phần, khoảng chiều sâu được tính từ điểm đặt ban đầu tới giá trị của perspective (theo đơn vị pixel). Thuộc tính perspective-origin định nghĩa trục quay cho thành phần có sử dụng perspective.

Thuộc tính giá trị Ví dụ Mô tả
perspective-origin [x-axis] [y-axis] perspective-origin: x-axis y-axis; x-axis: left | center | right | length | %
y-axis: top | center | bottom | length | %

Xem ví dụ

<style>
#ttt1
{
position: relative;
height: 150px;
width: 150px;
margin: 10px auto;
padding:10px;
border: 1px solid black;
background-color: #FBFFEB;
perspective:150;
perspective-origin: 10% 10%;
-webkit-perspective:150; /* Safari and Chrome */
-webkit-perspective-origin: 10% 10%; /* Safari and Chrome */
}

#ttt2
{
padding:50px;
position: absolute;
border: 1px solid black;
background-color: #C5E099;
transform: rotateX(45deg);
-webkit-transform: rotateX(45deg); /* Safari and Chrome */
}

</style>

<div id="ttt1"> ttt1 <div id="ttt2"> ttt2 </div></div>

ttt1
ttt2

Sự tương thích ( Cập nhật / Báo lỗi )

Firefox Opera Google Chrome Safari IOS Android Window phone
                           

No comments:

Post a Comment