Home Web Front-end CSS Tutorial Learn CSS3 animation (animation)

Learn CSS3 animation (animation)

Oct 09, 2016 pm 04:12 PM

CSS3 has many advanced functions, such as 3D effects, animations, multiple columns, etc. Today I will write an article to record how to use CSS3 to write an animation.

I have to say something ugly first, IE9 and below versions do not support CSS3 animation (if you really want to implement it, you can consider using js, but the effect is not very good). Chrome and Safafi recommend adding the prefix -webkit- for forward compatibility with older versions.

Today I will simply make an animation.

First, simply draw a div and then add a background image.

<body>
    <div class="demo">
        我是demo    </div></body>
Copy after login
.demo{
    width: 120px;
    height: 120px;
    margin: 100px auto;
    background: url(img/demo.jpg) no-repeat;
}
Copy after login

An ordinary DIV comes out, as shown on the right:Learn CSS3 animation (animation)

Then we make it move

First write a method, which describes how this picture should move

@keyframes run_animation{      
    from {
        transform: rotatez(0deg);
    }
    to {
        transform: rotatez(360deg);
    }
}
Copy after login

This animation_run is the name of this method. You need to associate the name to the relevant element later.

from describes the starting state of the animation, and to is the end state of the animation.

So this method is to rotate an element 360 degrees in a clockwise direction, which is very simple.

from to often cannot meet our daily development needs, so there is also this way of writing

@keyframes run_animation{
    0%{<br>     transform:rotatex(0deg);<br>   }
    16%{
        transform: rotatey(-90deg);
    }
    33%{
        transform: rotatey(-90deg) rotatez(135deg);
    }
    50%{
        transform: rotatey(225deg) rotatez(135deg);
    }
    66%{
        transform: rotatey(135deg) rotatex(135deg);
    }
    83%{
        transform: rotatex(135deg);
    }<br>  100%{<br>     transform: rotatex(0deg);<br>  }
}
Copy after login

This description allows the animation to have richer and cooler actions. The dynamics of the element at each stage are described by percentages. 0% is the from mentioned above, and 100% is to. In fact, this is very simple, right~

The animation is so easy to write. Next we attach the animation to our image.

.demo{
    width: 120px;
    height: 120px;
    margin: 100px auto;
    animation: run_animation 12s linear infinite; /*关联动画名称,定义动画时长,动画播放速度曲线,播放次数*/
    background: url(img/demo.jpg) no-repeat 100%;
}
Copy after login

With such a simple code, the picture can move according to the method we defined.

If you find that the animation is not moving now, it may be one of the following reasons:

1. The animation name does not match the name defined by @keyframes;

2. The animation playback duration is not defined, and the default is 0S, that is, no Play animation. The above code definition is 12S;

3. Run this code in IE9 and below browsers, IE9 and below does not support CSS3 animation;

4. The animation method is incorrectly defined, and the style is the same in each stage of the method definition. Like this

@keyframes run_animation{
    0%{
        transform: rotatez(90deg);
    }
    50%{
        transform: rotatez(90deg);
    }
   100%{
        transform: rotatez(90deg);
    }
}
Copy after login

Okay, now the animation should be moving. Next, let’s talk about other options in animation:

1. animation-iteration-count: The number of times the animation is played, write down how many times you want to play it. What I have used infinite times here is infinite

2. animation-timing-function: animation speed curve. This speed curve is a bit complicated and involves a Bessel function. If you don’t want to explore Bezier in depth, just use the ready-made linear, ease, ease-in, ease-out, and ease-in-out. If you know Bezier, you can use cubic-bezier(n,n,n,n). This is more advanced and I think it is a powerful tool in the show-off world.

3.animation-delay: Animation can be played with delay, and the parameters are also n S. Unlike animation-duration, animation-duration is the duration of animation playback.

The above attributes can all be abbreviated to animation, just like my chestnut above.

I won’t talk about the properties of reverse playback and pause. If necessary, you can go to http://www.w3school.com.cn/css3/css3_animation.asp or

https://developer.mozilla.org/ en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animation

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Demystifying Screen Readers: Accessible Forms & Best Practices Demystifying Screen Readers: Accessible Forms & Best Practices Mar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Create a JavaScript Contact Form With the Smart Forms Framework Create a JavaScript Contact Form With the Smart Forms Framework Mar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Adding Box Shadows to WordPress Blocks and Elements Adding Box Shadows to WordPress Blocks and Elements Mar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let&#039;s look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Working With GraphQL Caching Working With GraphQL Caching Mar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte Transition Making Your First Custom Svelte Transition Mar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Comparing the 5 Best PHP Form Builders (And 3 Free Scripts) Comparing the 5 Best PHP Form Builders (And 3 Free Scripts) Mar 04, 2025 am 10:22 AM

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

Show, Don't Tell Show, Don't Tell Mar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

What the Heck Are npm Commands? What the Heck Are npm Commands? Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

See all articles