What is the compound writing method to execute CSS3 animation once?

WBOY
Release: 2022-06-14 15:38:24
Original
2102 people have browsed it

The compound writing method of setting animation execution once in css3 is "animation: name time speed delay 1 whether to play in reverse", where "1" represents the number of times the animation is played, that is, the number of times the animation is executed; animation is a Abbreviated attributes, used to specify the action keyframe name, animation time, speed curve, animation delay, animation times, and whether to play the animation in reverse for the element animation.

What is the compound writing method to execute CSS3 animation once?

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

What is the compound writing method for css3 animation to be executed once?

In css3, the animation attribute name is "animation",

This attribute is an abbreviation attribute, used to specify binding The specified keyframe name, animation time, speed curve, animation delay, animation times and whether to play the animation in reverse,

The syntax is:

animation: name duration timing-function delay iteration-count direction fill-mode play-state;
Copy after login
  • animation- name specifies the name of the keyframe to be bound to the selector

  • animation-duration animation specifies how many seconds or milliseconds it takes to complete

  • animation- timing-function Sets how the animation will complete a cycle

  • animation-delay Sets the delay interval before the animation starts.

  • animation-iteration-count defines the number of times the animation is played.

  • animation-direction Specifies whether the animation should be played in reverse in turns.

  • animation-fill-mode specifies the style to be applied to the element when the animation is not playing (when the animation completes, or when there is a delay before the animation starts playing).

  • animation-play-state Specifies whether the animation is running or paused.

If the animation is only executed once, just set the animation-iteration-count value to 1.

Examples are as follows:

 
  

注意: Internet Explorer 9 及更早 IE 版本浏览器不支持 animation-iteration-count 属性。

Copy after login

Output results:

What is the compound writing method to execute CSS3 animation once?

(Learning video sharing:css video tutorial,html video tutorial)

The above is the detailed content of What is the compound writing method to execute CSS3 animation once?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
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!