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; 
        }
    }
  • 相关阅读:
    HtmlAgilityPack
    随笔-20150513
    过滤掉html 标签
    json转换
    第28月第3天 c语言读写文件
    第27月第28天 iOS bundle
    第27月第27天 https
    第27月第25天 clang -rewrite-objc main.m
    第27月第24天 git pull fetch
    第27月第18天 epoll lt et
  • 原文地址:https://www.cnblogs.com/ningjie/p/9614392.html
Copyright © 2011-2022 走看看