zoukankan      html  css  js  c++  java
  • 动画

    @charset "utf-8";

    body {
        margin: 100px;
    }

    div {
         200px;
        height: 200px;
        background-color: white;
        border: 1px solid green;

    /*  animation-name: myani;
        animation-duration: 1s;
        animation-timing-function: ease;*/
        /*animation-delay: 1s;*/
        /*animation-iteration-count: infinite;*/
        /*animation-iteration-count: 4;*/
        /*animation-direction: alternate;*/
        /*animation-play-state: paused;*/
        /*animation-fill-mode: forwards;*/
        /*animation-fill-mode: backforwards;*/
        /*animation-iteration-count: 3;
        animation-direction: alternate;
        animation-fill-mode: both;*/
        animation: myani 1s ease 2 alternate 1s both;
    }

    @keyframes myani {
    /*  0%, 100% {
            
            margin-left: 0px;
        }
        50% {
            
            margin-left: 100px;
        }*/
        form {
            background-color: white;
            margin-left: 0px;
        }
        to {
            background-color: black;
            margin-left: 100px; 
        }
    }
  • 相关阅读:
    opennebula 编译日志
    eclipse scons 使用指南
    eclipse 安装scons
    在Windows7上搭建Cocos2d-x 3.2alpha0开发环境
    Centos6.3 jekyll环境安装
    CNN-利用1*1进行降维和升维
    偏导数
    卷积神经网络--CNN
    struts2 模型驱动
    Struts2 数据驱动
  • 原文地址:https://www.cnblogs.com/ningjie/p/9614392.html
Copyright © 2011-2022 走看看