zoukankan      html  css  js  c++  java
  • css3中动画animation的应用

    <!DOCTYPE html>
    <html>
    <head>
    <style> 
    /*
    @-webkit-keyframes anim1 { // 规定动画。
    0% { 
    Opacity: 0; 
    font-size: 12px; 
    } 
    100% { 
    Opacity: 1; 
    font-size: 34px; 
    } 
    } 
    .anim1Div { 
    -webkit-animation-name: anim1 ; 规定 @keyframes 动画的名称
    -webkit-animation-duration: 1.5s; 规定动画完成一个周期所花费的秒或毫秒。默认是 0
    -webkit-animation-iteration-count: 400; 规定动画被播放的次数。默认是 1。
    -webkit-animation-direction: alternate; 规定动画是否在下一周期逆向地播放。默认是 "normal"。
    -webkit-animation-timing-function: ease-in-out; 规定动画的速度曲线。默认是 "ease"。
    } */
    
    div
    {
    100px;
    height:100px;
    background:red;
    position:relative;
    
    animation:myfirst 5s linear 2s infinite alternate;
    /* Firefox: */
    -moz-animation:myfirst 5s linear 2s infinite alternate;
    /* Safari and Chrome: */
    -webkit-animation:myfirst 5s linear 2s infinite alternate;
    /* Opera: */
    -o-animation:myfirst 5s linear 2s infinite alternate;
    }
    
    @keyframes myfirst /* 需要用@keyframes来申明动画的名称*/
    {/*从0%一直到100%的渐变过程*/
    0% {background:red; left:0px; top:0px;}
    25% {background:yellow; left:200px; top:0px;}
    50% {background:blue; left:200px; top:200px;}
    75% {background:green; left:0px; top:200px;}
    100% {background:red; left:0px; top:0px;}
    }
    
    @-moz-keyframes myfirst /* Firefox */
    {
    0% {background:red; left:0px; top:0px;}
    25% {background:yellow; left:200px; top:0px;}
    50% {background:blue; left:200px; top:200px;}
    75% {background:green; left:0px; top:200px;}
    100% {background:red; left:0px; top:0px;}
    }
    
    @-webkit-keyframes myfirst /* Safari and Chrome */
    {
    0% {background:red; left:0px; top:0px;}
    25% {background:yellow; left:200px; top:0px;}
    50% {background:blue; left:200px; top:200px;}
    75% {background:green; left:0px; top:200px;}
    100% {background:red; left:0px; top:0px;}
    }
    
    @-o-keyframes myfirst /* Opera */
    {
    0% {background:red; left:0px; top:0px;}
    25% {background:yellow; left:200px; top:0px;}
    50% {background:blue; left:200px; top:200px;}
    75% {background:green; left:0px; top:200px;}
    100% {background:red; left:0px; top:0px;}
    }
    </style>
    </head>
    <body>
    
    <p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
    
    <div></div>
    
    </body>
    </html>
  • 相关阅读:
    编写你的第一个程序(HelloWorld)
    有关数据库的一些基本关键字
    带箭头的面包屑导航栏
    浅析被element.style所覆盖的样式
    一些方便前端开发的小工具
    一道简单的闭包面试题
    First Article
    java8 lambda表达式 实现 java list 交集 并集 差集 去重复并集
    asp.net mvc5 WebUploader多文件大文件上传
    fastdfs安装部署
  • 原文地址:https://www.cnblogs.com/xs-yqz/p/4417783.html
Copyright © 2011-2022 走看看