CSS COURSE • LESSON
🚀 CSS Animations
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Animations
Animations allow elements to move automatically.
.box {
animation:move 2s infinite;
}
@keyframes move {
from{
transform:translateX(0);
}
to{
transform:translateX(200px);
}
}