Использование @keyframes
by fersterin
HTML
<p>
Привет
</p>
CSS
@keyframes around {
0% {
left: 0;
top: 0;
}
25% {
left: 240px;
top: 0;
}
50% {
left: 240px;
top: 140px;
}
75% {
left: 0;
top: 140px;
}
100% {
left: 0;
top: 0;
}
}
p {
animation: around 4s linear 0s infinite;
background: turquoise;
color: white;
height: 60px;
line-height: 60px;
margin: 0;
position: absolute;
text-align: center;
width: 60px;
}