nntrn
12/6/2018 - 1:21 PM

[rotate animation] #animation #css

[rotate animation] #animation #css

.example {
  -webkit-animation: rotation 2s infinite linear;
  animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(359deg); }
}

/*
source:
https://codepen.io/vitoralberto/pen/OPYyYB?editors=1100
*/