Basic CSS Animation

Create a simple animation using @keyframes.

Preview

Code

<style>
.box{
width:80px;
height:80px;
background:#60a5fa;
animation:move 2s infinite;
}

@keyframes move{
0%{transform:translateX(0);}
50%{transform:translateX(80px);}
100%{transform:translateX(0);}
}
</style>

<div class="box"></div>

More CSS Animations Examples (8)