The animation-duration property in CSS is used to define how long an animation should take to complete one cycle. That is it is used to specify the time duration for which animation will be played.
Syntax:
animation-duration: time|initial|inherit;
Property Value:
- time: This value is used to specify the length of time for which an animation will complete one cycle. This can be specified in either in seconds or in milliseconds. The default value is 0, which means that no animation will occur.
- initial: This value is used to set the property to its default value.
- inherit: This value is used to inherit the property from its parent element.
Example: HTML program to illustrate the animation-duration property in CSS.
html
<!DOCTYPE html>
< html >
< head >
< title >
CSS | animation-duration Property
</ title >
< style >
#gfg1 {
animation-name: text;
animation-duration: 5s;
animation-iteration-count: infinite;
}
#geek1 {
font-size: 40px;
text-align: center;
font-weight: bold;
color: #090;
padding-bottom: 5px;
}
#geek2 {
font-size: 17px;
font-weight: bold;
text-align: center;
}
@keyframes text {
from {
margin-top: 400px;
}
to {
margin-top: 0px;
}
}
</ style >
</ head >
< body >
< div id = "gfg1" >
< div id = "geek1" >
GeeksforGeeks
</ div >
< div id = "geek2" >
A computer science portal for geeks
</ div >
</ div >
</ body >
</ html >
|
Output:
Supported Browser: The browser supported by animation-duration property are listed below:
- Google Chrome 43.0 and above
- Edge 12.0 and above
- Firefox 16.0 and above
- Opera 30.0 and above
- Safari 9.0 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
02 Aug, 2023
Like Article
Save Article