Html5_애니메이션

9214 단어
/span>html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>title>

    <style>
        @keyframes rotate {
            from {
                /*  */
                transform: rotate(0deg);
            }
            to {
                /*  */
                transform: rotate(360deg);
            }
        }

        @keyframes change {
            0% {
                /* div    */
                width: 200px;
                height: 200px;
            }
            50% {
                /* div    */
                width: 100px;
                height: 400px;
            }
            100% {
                /* div    */
                width: 200px;
                height: 200px;
            }
        }
    style>

head>
<body>


<div style="animation: rotate 5s linear infinite; width: 200px;height:200px; margin: 50px 50px 50px 50px; background: url('http://file.popoho.com/wzfzl/20160706/q0rafysiogkco140510110S8-25.jpg') no-repeat;">div>


<div style="animation: change 5s linear infinite; width: 500px;height: 500px; margin: 100px 100px 100px 100px; background-color: red">div>

body>
html>

좋은 웹페이지 즐겨찾기