day09

作者: shinjia | 来源:发表于2017-11-16 23:51 被阅读0次

    A.今天学了什么

    1配置webstorm的安装环境

    http://www.jianshu.com/p/c482c6ea0a4b
    

    2.sass的语法

    http://www.jianshu.com/p/0f96f42b6924
    
    2.1变量
    
    $bg:pink;
    .header{background:$bg};
    $place:top;
    如果变量需要镶嵌在字符串之中,就必须需要写在#{}之中。
    .header{
      margin-#{$place}:20px;
    }
    
    2.1计算功能
    
    ody {
        margin: (14px/2);
        top: 50px + 100px;
        right: $var * 10%;
      }
    

    3.版本控制

    将代码上传到git中国或githun
    

    动画animation

    1.定义@keyframes 
    
    A.@keyframes myfirst
    {
        from {background: red;}
        to {background: yellow;}
    }
    
    B.@keyframes myfirst
    {
        0%   {background: red;}
        25%  {background: yellow;}
        50%  {background: blue;}
        100% {background: green;}
    }
    
    div{
     animation:myfirst 2s;
    }
    div{
     animation:myfirst 2s infinite;  //无限循环
    }
    

    B.今天学到了什么

    1配置webstorm的安装环境

    http://www.jianshu.com/p/c482c6ea0a4b
    

    2.sass的语法

    http://www.jianshu.com/p/0f96f42b6924
    
    2.1变量
    
    $bg:pink;
    .header{background:$bg};
    $place:top;
    如果变量需要镶嵌在字符串之中,就必须需要写在#{}之中。
    .header{
      margin-#{$place}:20px;
    }
    
    2.1计算功能
    
    ody {
        margin: (14px/2);
        top: 50px + 100px;
        right: $var * 10%;
      }
    

    3.版本控制

    将代码上传到git中国或githun
    

    动画animation

    1.定义@keyframes 
    
    A.@keyframes myfirst
    {
        from {background: red;}
        to {background: yellow;}
    }
    
    B.@keyframes myfirst
    {
        0%   {background: red;}
        25%  {background: yellow;}
        50%  {background: blue;}
        100% {background: green;}
    }
    
    div{
     animation:myfirst 2s;
    }
    div{
     animation:myfirst 2s infinite;  //无限循环
    }
    

    C.今天没掌握什么

     动画
    

    相关文章

      网友评论

          本文标题:day09

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