Does css3 animation effect have deformation?

WBOY
Release: 2022-04-28 14:41:10
Original
1273 people have browsed it

The animation effect in css3 has deformation; you can use "animation: animation attribute @keyframes ..{..{transform: deformation attribute}}" to achieve deformation animation effect. The animation attribute is used to set animation style, transform Properties are used to set the deformation style.

Does css3 animation effect have deformation?

The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.

Does the css3 animation effect have deformation?

css3 animation effect has deformation

Deformation can use the transform attribute in css. The transform attribute applies 2D to the element. or 3D conversion. This property allows us to rotate, scale, move or tilt the element.

You can use the animation attribute to set animation. This attribute is an abbreviated attribute that can be set:

  • ##animation-name specifies the keyframe name that needs to be bound to the selector. .

  • animation-duration Specifies the time it takes to complete the animation, in seconds or milliseconds.

  • animation-timing-function specifies the speed curve of animation.

  • animation-delay Specifies the delay before the animation starts.

  • animation-iteration-count specifies the number of times the animation should play.

  • animation-direction specifies whether the animation should be played in reverse in turn.

The example is as follows:

      Document  
这是一个旋转缩放的效果
Copy after login

Output result:

Does css3 animation effect have deformation?

(Learning video sharing:

css video Tutorial)

The above is the detailed content of Does css3 animation effect have deformation?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!