如何停止css3动画 财富值70

2016-10-31 21:02发布

ball2{

        position: absolute;         height: 60px;         width: 60px;         left: 60%;         top: 50%;         transform: translate(-50%,-50%) rotate(0);         background-color: #ddd;         border-radius: 50%;         transform-origin: -116.7% 50%;         -webkit-animation: rotate 3s linear infinite;         text-align: center;     }      #ball2:hover {         ???     }      @-webkit-keyframes  rotate {             to {             -webkit-transform:translate(-50%,-50%) rotate(1turn);         }              }

一个球体真在绕定点旋转,在hover写什么,才能达到鼠标移入#ball2停止旋转的效果?求大神解答。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答

animation-play-state: paused

animation-play-state:paused;

-webkit-animation-play-state:paused;

一周热门 更多>