day09

作者: 613桑 | 来源:发表于2017-07-25 20:00 被阅读0次

    1.今天学会了

    动画animation

    1.定义@keyframes

    A@Keyframes myfirst
    {
    from{background:red;}
    to{background:yello;}
    
    B@Keyframes myfirst
    {
    0%{brackground:red;}
    25%{brackground:yellow;}
    50%{brackground:blue;}
    100%{brackground:green;}
    }
    
    div{
    animation:my first 2s;
    }
    div{
    animation:myfirst 2s infinite;
    //无限循环
    

    2.下拉框

    <select style="width:200px;height=25px;">
    <option va;ue=""></option>
    

    3.从网上拉取样品

    .....
    //例子
    <link rel=stylesheet href="所取样品的地址">
    <style>
    a{display:block;
    width:100px;
    line-height:40px
    background-color:red;
    。。。。
    }
    。。。。
    <a href=""><i class=iconfont icon- 所取样品的名字></i></a>
    ##2.今天熟悉了
    
    动画animation
    ####1.定义@keyframes
    

    A@Keyframes myfirst
    {
    from{background:red;}
    to{background:yello;}

    B@Keyframes myfirst
    {
    0%{brackground:red;}
    25%{brackground:yellow;}
    50%{brackground:blue;}
    100%{brackground:green;}
    }

    div{
    animation:my first 2s;
    }
    div{
    animation:myfirst 2s infinite;
    //无限循环

    >##3.今天不懂的
    暂时没有

    相关文章

      网友评论

          本文标题:day09

          本文链接:https://www.haomeiwen.com/subject/mbjgkxtx.html