Issue making Bootstrap3 icon spin

前端 未结 7 2128
离开以前
离开以前 2021-02-03 17:59

Inspired by Fontawesome, I\'m trying to make a spinning icon with bootstrap3. It\'s easily achieve via CSS3 transition and transform. Problem is the icon does not not rotate aro

7条回答
  •  遥遥无期
    2021-02-03 18:13

    Non of the above worked for me but this:

    .spin {
            animation: spin infinite 4s linear;
            height: 80px;
        }
    
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
    

提交回复
热议问题