JSFiddle - React, Tailwind, and code Playground
by brunomuller
HTML
<div class="circle circle7" >Hello</div>
CSS
.circle {
border-radius: 30px;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
font-size: 12px;
background-color: red;
position: absolute;
text-transform: uppercase;
}
.circle7 {
left: 100px;
top: 100px;
-webkit-animation: radius3 5s infinite linear;
}
@-webkit-keyframes radius3 {
from {
-webkit-transform: rotate(0deg)
translate(-50px)
rotate(0deg);
}
to {
-webkit-transform: rotate(360deg)
translate(-50px)
rotate(-360deg);
}
}