博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

css3控制旋转

Posted on 2013-10-24 16:57  有事没事  阅读(121)  评论(0)    收藏  举报

.cross-browser .feature-box-image:hover {
    -webkit-transition: all 0.7s linear;
    -webkit-transform: rotate(6.28rad);
        transition: all 0.7s;
    transform: rotate(6.28rad);
}