| Thuộc tính | giá trị | Ví dụ | Mô tả |
|---|---|---|---|
| transition-duration | time | transition-duration: 10s; | thời gian để thực hiện xong 1 chuyền động với quảng đường cho trước |
Xem ví dụ
<style>
#ttt
{
width:345px;
height:200px;
margin:auto;
padding:10px
background:#C5E099;
transition-property:width;
transition-duration:5s;
/* Firefox 4 */
-moz-transition-property:width;
-moz-transition-duration:5s;
/* Safari and Chrome */
-webkit-transition-property:width;
-webkit-transition-duration:5s;
/* Opera */
-o-transition-property:width;
-o-transition-duration:5s;
}#ttt:hover{width:100%;}
</style><div id="ttt"> di chuột vào nội dung để thấy hiệu ứng </div>
Sự tương thích ( Cập nhật / Báo lỗi )
No comments:
Post a Comment