Как правильно сделать анимацию заднего фона в big-line , чтобы image-box стоял статично
little-line - маленькая полосочка
big-line - большая полоска вне круга
image-box - иконка и круг
<div class="little-line">
<div class="big-line">
<div class="image-box">
<img src="img/icon_bitter.svg" alt="icon-bul">
</div>
</div>
</div>
.little-line {}
.big-line {
-webkit-animation: spin 0.7s infinite linear;
-moz-animation: spin 0.7s infinite linear;
-o-animation: spin 0.7s infinite linear;
-ms-animation: spin 0.7s infinite linear;
}
.image-box {}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg);}
100% { -webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
0% { -moz-transform: rotate(0deg);}
100% { -moz-transform: rotate(360deg);}
}
@-o-keyframes spin {
0% { -o-transform: rotate(0deg);}
100% { -o-transform: rotate(360deg);}
}
@-ms-keyframes spin {
0% { -ms-transform: rotate(0deg);}
100% { -ms-transform: rotate(360deg);}
}