Home > Web Front-end > HTML Tutorial > Detailed explanation of method code for implementing animation in HTML

Detailed explanation of method code for implementing animation in HTML

高洛峰
Release: 2017-03-23 09:57:53
Original
2789 people have browsed it

In the Animation function, methods to implement animation

Detailed explanation of method code for implementing animation in HTML

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<htmlxmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type”content=“text/html; charset=gb2312”/>
<title>实现动画的各种方法的比较示例</title>
</head>
<styletype=“text/css”>
@keyframesmycolor{
            0%{
                        width:100px;
                        height:100px;
            }
            100%{
                        width:500px;
                        height:500px;
            }
}
div{
            background-color:red;
            width:500px;
            height:500px;
            animation-name:mycolor;
            animation-duration:5s;
            animation-timing-function:ease-out;
}
</style>
<body>
<div>
</div>
</body>
</html>
Copy after login

Through the above code, we can see the difference between the various implementation methods in the Animations function. In this example, there is a div element. When the page is opened, the div element is displayed within 5 seconds. From 100px long and 100px wide to 500px long and 500px wide, by changing the attribute value of the Animation-timing-function attribute, and then observing the change speed of the length and width of the div element throughout the animation, you can see Explain the differences between various methods of implementing animation.

Finally, we will introduce how to use the animation function to achieve a commonly used animation effect in web design-the fade-in effect of the web page. Change the attribute value of the page's opacity attribute in the end frame to achieve the page fade-in effect. The code is as follows:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<htmlxmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type”content=“text/html; charset=gb2312”/>
<title>实现网页淡入的效果示例</title>
</head>
<styletype=“text/css”>
@keyframesfadein{
            0%{
                        opacity:0;
                        background-color:white;
            }
            100%{
                        opacity:1;
                        background-color:white;
            }
}
</style>
<body>
示例文字
</body>
</html>
Copy after login


.

The above is the detailed content of Detailed explanation of method code for implementing animation in HTML. 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template