The transition-timing-function attribute is used to specify the speed curve of the transition effect, which allows the transition effect to change its speed over time; it can achieve transition effects that start slowly, then become faster, then end slowly, etc. .
CSS3 transition-timing-function attribute
Function:transition- The timing-function attribute specifies the velocity curve of the transition effect. This property allows the transition effect to change its speed over time.
Syntax:
transition-timing-function: linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(n,n,n,n);
Description:
linear: Specifies a transition effect that starts and ends at the same speed (equal to cubic -bezier(0,0,1,1)).
ease: Specifies the transition effect that starts slowly, then becomes faster, and then ends slowly (cubic-bezier(0.25,0.1,0.25,1)).
ease-in: Specifies the transition effect that starts at a slow speed (equal to cubic-bezier(0.42,0,1,1)).
ease-out: Specifies the transition effect that ends at a slow speed (equal to cubic-bezier(0,0,0.58,1)).
ease-in-out: Specifies a transition effect that starts and ends at a slow speed (equal to cubic-bezier(0.42,0,0.58,1)).
cubic-bezier(n,n,n,n): Define your own value in the cubic-bezier function. Possible values are between 0 and 1.
Note: Internet Explorer 9 and earlier browsers do not support the transition-timing-function attribute; Internet Explorer 10, Firefox, Opera and Chrome support the transition-timing-function attribute. Safari supports an alternative -webkit-transition-timing-function attribute.
CSS3 transition-timing-function attribute usage example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> div { width:100px; height:100px; background:red; margin: 10px 0px; } .demo1{ transition:width 2s; transition-timing-function:linear; /* Firefox 4 */ -moz-transition:width 2s; -moz-transition-timing-function:linear; /* Safari and Chrome */ -webkit-transition:width 2s; -webkit-transition-timing-function:linear; /* Opera */ -o-transition:width 2s; -o-transition-timing-function:linear; } .demo2{ transition:width 2s; transition-timing-function:ease; /* Firefox 4 */ -moz-transition:width 2s; -moz-transition-timing-function:ease; /* Safari and Chrome */ -webkit-transition:width 2s; -webkit-transition-timing-function:ease; /* Opera */ -o-transition:width 2s; -o-transition-timing-function:ease; } .demo1:hover,.demo2:hover { width:300px; } </style> </head> <body> <p>请把鼠标指针移动到红色的 div 元素上,查看过渡效果。</p> <p>匀速过渡</p> <div class="demo1"></div> <p>慢速开始,然后变快,然后慢速结束</p> <div class="demo2"></div> <p><b>注:</b>本例在 Internet Explorer 中无效。</p> </body> </html>
Rendering:
The above is the entire content of this article, I hope it will be helpful to everyone's study. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !
The above is the detailed content of How to use the transition-timing-function attribute. For more information, please follow other related articles on the PHP Chinese website!

GooFonts is a side project signed by a developer-wife and a designer-husband, both of them big fans of typography. We’ve been tagging Google

Pavithra Kodmad asked people for recommendations on what they thought were some of the most timeless articles about web development that have changed their

Learning how to build GraphQL APIs can be quite challenging. But you can learn how to use GraphQL APIs in 10 minutes! And it so happens I've got the perfect

When a component lives in an environment where the data queries populating it live nearby, there is a pretty direct line between the visual component and the

Here's some legit CSS trickery from yuanchuan. There is this CSS property offset-path. Once upon a time, it was called motion-path and then it was renamed. I

Miriam Suzanne explains in a Mozilla Developer video on the subject.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.