CSS transition-duration Property

You are Here:

CSS transition-duration Property

CSS transition-duration property sets the length of time a transition animation should take to complete.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerDiv p{ width: 100%; text-align: center; } #outerdiv{ width: 100%; height: 150px; border: 1px solid #267326; padding: 10px; display: flex; position: relative; text-align: center; } #innerdiv{ width: 80px; height: 80px; background-color: teal; color: #fff; line-height: 4; border: 1px solid #004d4d; position: absolute; top: 5%; left: 1%; transition-property: left; -webkit-transition-property: left; transition-duration: 1s; -webkit-transition-duration: 1s; } #outerDiv:hover > #innerdiv{ left: 85%; } </style> </head> <body> <h1>CSS transition-duration Property</h1> <div id="outerDiv"> <p>Hover Me</p> <div id="innerDiv">Div</div> </div> </body> </html>

Syntax

Using CSS

element{ transition-duration: 1s; }

Using Javascript

object.style.transitionDuration="1s";

Animatable

No, transition-duration property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS transition-duration property is 0s.

Property Value

The following table provides a list of values for CSS transition-duration property.

ValueExplanation
timeSpecifies the amount of time the transition from the old value of a property to the new value should take.

Using JavaScript

In the following example, we will demonstrate how to change the CSS transition-duration property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #outerDiv p{ width: 100%; text-align: center; } #outerdiv{ width: 100%; height: 150px; border: 1px solid #267326; padding: 10px; margin-bottom: 25px; display: flex; position: relative; text-align: center; } #innerdiv{ width: 80px; height: 80px; background-color: teal; color: #fff; line-height: 4; border: 1px solid #004d4d; position: absolute; top: 5%; left: 1%; transition-property: left; -webkit-transition-property: left; transition-duration: 1s; -webkit-transition-duration: 1s; } #outerDiv:hover > #innerdiv{ left: 85%; } </style> </head> <body> <h1>CSS transition-duration Property</h1> <div id="outerDiv"> <p>Hover Me</p> <div id="innerDiv">Div</div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("innerDiv"); function myFunction(){ x.style.transitionDuration = "2s"; x.style.WebkitTransitionDuration = "2s"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author