1. 程式人生 > >CSS3常用屬性及用法

CSS3常用屬性及用法

rip watch code java ash nbsp chrom tran 替代

1.transition: 過渡屬性,可以替代flash和javascript的效果

兼容性:Internet Explorer 9 以及更早的版本,不支持 transition 屬性。

Chrome 25 以及更早的版本,需要前綴 -webkit-。

Safari 需要前綴 -webkit-。

div
{
transition: width 1s linear 2s;
/* Firefox 4 */
-moz-transition:width 1s linear 2s;
/* Safari and Chrome */
-webkit-transition:width 1s linear 2s;
/* Opera */
-o-transition:width 1s linear 2s;
}

公司**圓桌用的是
transition: all .2s ease-out;

CSS3常用屬性及用法