Could we help you? Please click the banners. We are young and desperately need the money
CSS animations bring websites to life, making them more interactive and engaging. The @keyframes rule in CSS allows developers to define smooth animations with precise control over each stage of the motion. Whether you’re a beginner or an advanced developer, understanding CSS keyframes can significantly enhance your front-end development skills.
In this guide, we will explore how CSS keyframes work, real-world use cases, best practices, and advanced animation techniques to help you master web animations.
CSS keyframes define the intermediate steps in an animation sequence. Unlike CSS transitions, which animate between two states, keyframes allow multiple states throughout the animation’s duration.
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
.element {
animation: slideIn 1s ease-in-out;
}
CSS keyframes are used across different web development scenarios, including:
You can define multiple states beyond just from and to:
@keyframes bounce {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
.element {
animation: bounce 2s infinite;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes moveUp {
from {
transform: translateY(50px);
}
to {
transform: translateY(0);
}
}
.element {
animation: fadeIn 1s ease-in-out, moveUp 1s ease-in-out;
}
CSS animations can be triggered dynamically using JavaScript:
document.querySelector('.element').addEventListener('click', function() {
this.style.animation = 'bounce 1s ease-in-out';
setTimeout(() => {
this.style.animation = '';
}, 1000);
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Keyframes Animation Example</title>
<style>
/* Slide-in animation */
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
/* Bounce animation */
@keyframes bounce {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
.box {
width: 100px;
height: 100px;
background-color: #3498db;
color: white;
display: flex;
align-items: center;
justify-content: center;
margin: 20px;
font-size: 18px;
font-weight: bold;
border-radius: 10px;
text-align: center;
}
.slide-in { animation: slideIn 1s ease-in-out; }
.bounce { animation: bounce 2s infinite; }
.element { cursor: pointer; }
</style>
</head>
<body>
<h2>CSS Keyframes Animation Examples</h2>
<div class="box slide-in">Slide In</div>
<div class="box bounce">Bounce</div>
<div class="box element">Click Me</div>
<script>
document.querySelector('.element').addEventListener('click', function() {
this.style.animation = 'bounce 1s ease-in-out';
setTimeout(() => { this.style.animation = ''; }, 1000);
});
</script>
</body>
</html>
CSS keyframes provide a powerful way to create dynamic animations, enhancing user engagement and interactivity. Whether you're animating buttons or crafting full-page transitions, mastering CSS animations will take your front-end skills to the next level.