MediaWiki:Common.css:修订间差异
MediaWiki界面页面
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第355行: | 第355行: | ||
.mainContent{width:50%} | .mainContent{width:50%} | ||
.recentNew{width:200px} | .recentNew{width:200px} | ||
/*CSS3*/ | |||
.div_css3 | |||
{ | |||
width:100px; | |||
height:100px; | |||
background:red; | |||
animation:myfirst 5s; | |||
-moz-animation:myfirst 5s; /* Firefox */ | |||
-webkit-animation:myfirst 5s; /* Safari and Chrome */ | |||
-o-animation:myfirst 5s; /* Opera */ | |||
} | |||
@keyframes myfirst | |||
{ | |||
from {background:red;} | |||
to {background:yellow;} | |||
} | |||
@-moz-keyframes myfirst /* Firefox */ | |||
{ | |||
from {background:red;} | |||
to {background:yellow;} | |||
} | |||
@-webkit-keyframes myfirst /* Safari and Chrome */ | |||
{ | |||
from {background:red;} | |||
to {background:yellow;} | |||
} | |||
@-o-keyframes myfirst /* Opera */ | |||
{ | |||
from {background:red;} | |||
to {background:yellow;} | |||
} | |||