부트스트랩 glyphicon 회전

1 개요[ | ]

부트스트랩 glyphicon 회전
<link rel='stylesheet' href='//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<style>
@keyframes spinIt {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}
.spin .glyphicon-refresh {
  animation: spinIt 1.5s infinite linear;
  font-size: 2em;
}
</style>

<p class="spin"><span class="glyphicon glyphicon-refresh"></span></p>

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}