CSS旋转慢

时间:2012-09-16 18:38:38

标签: css animation css3 rotation flip

http://jsfiddle.net/egEq2/

.badge {
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 1000;
    position: relative;
}   
.back, .front {
    position: absolute;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 1s ease-in;
    width: 100%;
    height: 100%;   
}
.back {
    -webkit-transform: rotateY(180deg);
    overflow: hidden;
}   
.front {
}
.product-action {
    display: inline-block;
}   
.product-action:hover .back {   
    -webkit-transform: rotateY(0deg);
}
.product-action:hover .front {      
    -webkit-transform: rotateY(-180deg);
}​

......工作,但翻转速度太慢,我可以改变速度吗?

另外,我可以以某种方式添加宽度,因此翻盖看起来像一块板而不是一张薄纸吗? :)

谢谢!

1 个答案:

答案 0 :(得分:10)

您已经指定了速度:

-webkit-transition: -webkit-transform 1s ease-in;
                                      ^^

将其更改为0.3shttp://jsfiddle.net/egEq2/1/