Thứ Ba, 7 tháng 5, 2013

CSS transition-property


transition-property 3

Xác định thành phần đối tượng được chuyển động

Thuộc tính giá trị Ví dụ Mô tả
transition-property none transition-property: none; không
all transition-property: all; tất cả (cả phương ngang & dọc)
width transition-property: width; phương ngang
height transition-property: height; phương dọc

Xem ví dụ

#ttt {
background: #C5E099;

transition-property: height;
-moz-transition-property: height;
-webkit-transition-property: height;
-o-transition-property: height;
-ms-transition-property: height;
}

#ttt:hover { height: 100px; }

<div id="ttt"> Thay height bằng all, width. Bạn sẽ thấy những hiệu ứng khác nhau </div>

Thay height bằng all , width. Bạn sẽ thấy những hiệu ứng khác nhau

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

Firefox Opera Google Chrome Safari IOS Android Window phone
                           


Chủ đề: