Home Web Front-end HTML Tutorial CSS3 shows wonderful animation effects css3 animation properties_html/css_WEB-ITnose

CSS3 shows wonderful animation effects css3 animation properties_html/css_WEB-ITnose

Jun 24, 2016 am 11:38 AM

The hot CSS3 has undoubtedly attracted the attention of many front-end developers. However, the animation properties in CSS3 are the main signature of the new features. Speaking of the animation properties of CSS3, people have to think of this Three attributes: Transform?Transition?Animation. Although the transform attribute seems to be able to achieve animation effects, its essence is actually static. To put it bluntly, it is actually a graphic deformation tool; while the transition attribute is a simple animation attribute, which is very simple to operate; here I will mainly introduce it to you. Animations attribute, this is a real animation attribute. Although the official does not introduce it too much, it just briefly explains that this attribute is an extension of the transition attribute, but its function is very powerful. Animations can define multiple key frames and define each key. Property values ​​of elements in the frame to achieve complex animation effects. So what kind of animation can Animation make? It can be said that as long as you are creative and you can toss, then everything is possible.

I believe everyone is familiar with this attribute, so I won’t introduce too much basic knowledge. If you don’t know much about it, you can look for basic knowledge on the Internet. There is a lot of relevant information available.

Here I will tell you about a very important tag: keyframes. How to move animation? It all depends on it. The basic principle of keyframes is similar to the timeline and keyframes of flash, so rich animations can be produced. Take a look at the simple example:

@keyframes demos{

from{transform:translate(0, 0);}

20%{transform:translate(20, 20 );}

40%{transform:translate(40,0);}

60%{transform:translate(60,20);}

80%{ transform:translate(80, 0);}

to{transform:translate(100, 20);}

}

The above example sets a file called " demos" animation, in which from, 20%, 40%, 60%, 80%, and to respectively represent the corresponding attribute effects at different points in time (from and to can be represented by 0% and 100%, please note is 0% and cannot be abbreviated to 0). It can be seen that we can set corresponding attribute effects at multiple time points, which greatly enriches our animation effects. At any two points in time, Animation will automatically calculate the intermediate transition effect. At the same time, we can also control the time period by setting Animation to achieve high-quality animation. Compared with flash, the animation properties of Animation are not inferior. The biggest advantage is that it is simple to create. With just a few lines of code, rich animations can be rendered, which is beyond the reach of flash.

The link above is to organize a sample page for you. Some of the examples are made by myself, and some are collected from the Internet. The purpose is to show you more and more exciting animation effects so that you can Learn more. If you have a good idea, please share it with us and add it to this page. This sample page will also be continuously updated from time to time to let more people know that because of CSS3, everything is possible with animation. possible.

Note: Because the sample page is not complete enough, attachment downloads are not available for the time being.

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

Video Face Swap

Video Face Swap

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

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)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

See all articles