


What are transition, transform and animation in CSS3? The difference between the three
This chapter will introduce to you what transition, transform and animation are in CSS3? The difference between the three. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
transition
Transition allows css attribute values to smoothly transition within a certain time interval. The syntax is as follows:
transition : transition-property transition-duration transition-timing-function transition-delay [, ...]
Transition-related properties:
transition-property: used to specify the properties for executing the transition effect, which can be none, all or specific properties.
transition-duration: The duration of animation execution, in s (seconds) or ms (milliseconds).
transition-timing-function: Transformation rate effect, optional values are ease|linear|ease-in|ease-out|ease-in-out|cubic-bezier (custom time curve).
transition-delay: used to specify the time when the animation starts to execute. The value is the same as transition-duration, but can be a negative number.
transform
transform is divided into 2D and 3D. Here we only introduce the more commonly used 2D transform. Its main It includes the following transformations: rotation rotate, distortion skew, scale scale and translation, and matrix transformation matrix. The syntax is as follows:
transform: rotate | scale | skew | translate |matrix;
Related properties of transform:
rotate Rotation
The unit of rotate is deg degree, positive number means clockwise rotation, negative number means counterclockwise rotation.scale Scale
The value range of scale is 0~n. If it is less than 1, it means to reduce it, otherwise it means to enlarge it. For example, scale(0.5, 2) means that the horizontal direction is reduced by 1 times and the vertical direction is enlarged by 1 times. In addition, one direction can also be set through scaleX or scaleY.skew Distortion
The unit of skew is the same as rotate, which is deg degrees. For example, skew(30deg, 10deg) means that the horizontal direction is tilted 30 degrees and the vertical direction is tilted 10 degrees.translate Offset
Offset also includes horizontal offset and vertical offset. translate(x,y) moves horizontally and vertically at the same time (that is, the X-axis and Y-axis move simultaneously); translateX(x) only moves horizontally (X-axis moves); translateY(Y) only moves vertically (Y-axis move).
animation
Animation in CSS3 is controlled through a thing called Keyframes. The name starts with "@keyframes", followed by the "name of the animation" plus a pair of curly brackets "{}". In the brackets are some style rules for different time periods, a bit like how we write CSS styles. For a style rule in "@keyframes" that is composed of multiple percentages, such as between "0%" and "100%", the syntax is as follows:
@keyframes IDENT { from { Properties: Properties value; } Percentage { Properties: Properties value; } to { Properties: Properties value; } } 或者全部写成百分比的形式: @keyframes IDENT { 0% { Properties: Properties value; } Percentage { Properties: Properties value; } 100% { Properties: Properties value; } }
animation and transition have their own corresponding Attributes, then there are mainly the following types in animation: animation-name; animation-duration; animation-timing-function; animation-delay; animation-iteration-count; animation-direction; animation-play-state. Some of the properties are explained below:
animation-name keyframe name:
is used to define the name of an animation, which is the name of the animation created by the previous keyframes , the default value is none, when the value is none, there will be no animation effect. If we want to attach several animations to an element at the same time, just separate them with commas.animation-iteration-count Number of animation loops:
The default is 1. If you want to loop infinitely, just set it to infinite.animation-direction The direction of animation playback:
It has only two values. The default value is normal. If set to normal, each cycle of the animation will play forward. ;The other value is alternate. Its function is to play the animation forward in the even-numbered times and in the reverse direction in the odd-numbered times.animation-play-state Play state:
It mainly has two values, running and paused, of which running is the default value. You can stop the currently playing animation through paused, and you can also replay the paused animation through running. This attribute is not commonly used.
The above is the detailed content of What are transition, transform and animation in CSS3? The difference between the three. For more information, please follow other related articles on the PHP Chinese website!

In this post, Blackle Mori shows you a few of the hacks found while trying to push the limits of Cohost’s HTML support. Use these if you dare, lest you too get labelled a CSS criminal.

Custom cursors with CSS are great, but we can take things to the next level with JavaScript. Using JavaScript, we can transition between cursor states, place dynamic text within the cursor, apply complex animations, and apply filters.

Interactive CSS animations with elements ricocheting off each other seem more plausible in 2025. While it’s unnecessary to implement Pong in CSS, the increasing flexibility and power of CSS reinforce Lee's suspicion that one day it will be a

Tips and tricks on utilizing the CSS backdrop-filter property to style user interfaces. You’ll learn how to layer backdrop filters among multiple elements, and integrate them with other CSS graphical effects to create elaborate designs.

Well, it turns out that SVG's built-in animation features were never deprecated as planned. Sure, CSS and JavaScript are more than capable of carrying the load, but it's good to know that SMIL is not dead in the water as previously

Yay, let's jump for text-wrap: pretty landing in Safari Technology Preview! But beware that it's different from how it works in Chromium browsers.

This CSS-Tricks update highlights significant progress in the Almanac, recent podcast appearances, a new CSS counters guide, and the addition of several new authors contributing valuable content.

Most of the time, people showcase Tailwind's @apply feature with one of Tailwind's single-property utilities (which changes a single CSS declaration). When showcased this way, @apply doesn't sound promising at all. So obvio


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

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