safari нет, что делаю не так?
.custom-icon {
-moz-animation: animation-rotate 1s ease-in-out 0s;
-webkit-animation: animation-rotate 1s ease-in-out 0s;
animation: animation-rotate 1s ease-in-out 0s;
}
@-moz-keyframes animation-rotate {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes animation-rotate {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@keyframes animation-rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
у меня работает в фф https://codepen.io/lzd/pen/dypBqzL
Обсуждают сегодня