About CSS3 animation to achieve frame-by-frame animation effect

不言
Release: 2018-06-20 17:19:31
Original
4483 people have browsed it

This article mainly introduces CSS3 animation to achieve frame-by-frame animation effect, which has certain reference value. Interested friends can refer to it

The animation attribute in css3 is very powerful, but you can use it yourself Relatively few, I just happened to be asked about it in an interview recently. I will make a short summary of animation while I have time now. At the same time, a demo of frame-by-frame animation is implemented as an exercise

List of animation attributes

Because there are many animation attributes, it is a bit painful to see it in w3c, so I just did it. A map, if you want to check it later, it will be clear at a glance

Use animation to achieve frame-by-frame animation

Be familiar with the properties of animation After that, I have to find a simple small project to implement. Frame-by-frame animation is so interesting. Let’s run one to satisfy myself first. The idea is very simple, which is to give the element a sprite background, and then add the frame animation to change the background-position. Key code:

@keyframes run{ from{ background-position: 0 0; } to{ background-position: -1540px 0 ; } } p{ width:140px; height:140px; background: url(run.png) ; animation-name:run; animation-duration:1s; animation-iteration-count:infinite; }
Copy after login


But after running, we found that the frame animation between each frame of animation is sliding, which is not what we want. effect, why?

It turns out that animation transitions in ease mode by default, which inserts tweening animation between each key frame, so the animation effect is consistent
It’s easy to solve if you know the reason. The solution is:

@keyframes run{ 0%, 8%{ /*动作一*/ } 9.2%, 17.2%{ /*动作二*/ } ... }
Copy after login

step1: Stay 8 frames between actions, set action one at 0%, end action one at 8%

step2: Transition between actions for 1.2 frames, set action two at 9.2%, action two Ended at 17.2%

Full code:

    css3逐帧动画  
  

Copy after login

There is another implementation method, which is to use steps(), which is the step animation between frames , this is not written in w3c, let me post a picture first


As can be seen from the above picture:

steps(1,start): Animation 1 Jump to 100% from the beginning until the end of this frame (not the entire cycle)

steps(1,end): Maintain the 0% style until the end of this frame (not the entire cycle)

You can also Directly set animation-timing-function: step-start/step-end

The step-start effect is equivalent to steps(1,start), and the step-end effect is equivalent to steps(1,end)

Finally The effect, because the recording problem may be a bit laggy, interested students can directly copy the code and run it:

Full code:

    css3逐帧动画  
  

Copy after login


The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

How to use CSS3 box-reflect to create a reflection effect

About the animation attribute in CSS Instructions

The above is the detailed content of About CSS3 animation to achieve frame-by-frame animation effect. 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!