水平居中的不同方法实现:

 position: absolute;
margin: auto;
left:;
right:;
position: absolute;
left:%;
-webkit-transform:translateX(-%);

垂直居中的几种实现方法:

 position: absolute;
margin:auto ;
top:;
bottom:;
position: absolute;
top:%;
-webkit-transform:translateY(-%);

中心居中的几种方法:

position: absolute;
margin:auto;
top:;
bottom:;
left:;
right:;
  position: absolute;
top:%;
left:%;
-webkit-transform:translateX(-%) translateY(-%);

透明度的控制(渐显效果)

@-webkit-keyframes opacity_kf {
% {
opacity: ;
}
% {
opacity: ;
}
}

延时效果的控制:

当使用@keyframes创建动画时,一定要把它捆绑到某个选择器,否则不会产生动画。另外必须定义动画的名称和时长,如果忽略时长,那么动画不允许,因为默认值是0。如果是几个动画延时出现构成的整体动画,那么可以为每个小动画设置不同延时,令他们相继出现,当为一个对象设置不同时间的不同状态时最好使用百分比来规定变化发生的时间,或用关键词“from”“to”等同于0%和100%(分别为动画的开始和结束)。

代码示例如下:

div
{
animation: myfirst 5s;
-moz-animation: myfirst 5s; /* Firefox */
-webkit-animation: myfirst 5s; /* Safari 和 Chrome */
-o-animation: myfirst 5s; /* Opera */
}
@keyframes myfirst
{
% {background: red;}
% {background: yellow;}
% {background: blue;}
% {background: green;}
} @-moz-keyframes myfirst /* Firefox */
{
% {background: red;}
% {background: yellow;}
% {background: blue;}
% {background: green;}
} @-webkit-keyframes myfirst /* Safari 和 Chrome */
{
% {background: red;}
% {background: yellow;}
% {background: blue;}
% {background: green;}
} @-o-keyframes myfirst /* Opera */
{
% {background: red;}
% {background: yellow;}
% {background: blue;}
% {background: green;}
}
@keyframes myfirst
{
% {background: red; left:0px; top:0px;}
% {background: yellow; left:200px; top:0px;}
% {background: blue; left:200px; top:200px;}
% {background: green; left:0px; top:200px;}
% {background: red; left:0px; top:0px;}
} @-moz-keyframes myfirst /* Firefox */
{
% {background: red; left:0px; top:0px;}
% {background: yellow; left:200px; top:0px;}
% {background: blue; left:200px; top:200px;}
% {background: green; left:0px; top:200px;}
% {background: red; left:0px; top:0px;}
} @-webkit-keyframes myfirst /* Safari 和 Chrome */
{
% {background: red; left:0px; top:0px;}
% {background: yellow; left:200px; top:0px;}
% {background: blue; left:200px; top:200px;}
% {background: green; left:0px; top:200px;}
% {background: red; left:0px; top:0px;}
} @-o-keyframes myfirst /* Opera */
{
% {background: red; left:0px; top:0px;}
% {background: yellow; left:200px; top:0px;}
% {background: blue; left:200px; top:200px;}
% {background: green; left:0px; top:200px;}
% {background: red; left:0px; top:0px;}
}

CSS3动画中的位置设定问题-LMLPHP

05-27 12:29