Continuous CSS rotation animation on hover, animated back to 0deg on hover out

后端 未结 7 1548
温柔的废话
温柔的废话 2020-11-30 22:26

I have an element that spins when you hover over it indefinitely. When you hover out, the animation stops. Simple:

@-webkit-keyframes rotate {
    from {
            


        
7条回答
  •  死守一世寂寞
    2020-11-30 22:43

    The solution is to set the default value in your .elem. But this annimation work fine with -moz but not yet implement in -webkit

    Look at the fiddle I updated from yours : http://jsfiddle.net/DoubleYo/4Vz63/1648/

    It works fine with Firefox but not with Chrome

    .elem{
        position: absolute;
        top: 40px;
        left: 40px;
        width: 0; 
        height: 0;
        border-style: solid;
        border-width: 75px;
        border-color: red blue green orange;
        transition-property: transform;
        transition-duration: 1s;
    }
    .elem:hover {
        animation-name: rotate; 
        animation-duration: 2s; 
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    
    @keyframes rotate {
        from {transform: rotate(0deg);}
        to {transform: rotate(360deg);}
    }

提交回复
热议问题