day09

作者: 向钱看丷向厚赚 | 来源:发表于2017-09-06 21:41 被阅读0次

A、今天学到了什么

1、动画animation
//定义:@keyframes (//关键帧)
1、@keyframes myfirst
{
form{background:red;}
to{background:yellow;}
}
例子
//HTML
<div class="box"></div>

//CSS

.box{
            width: 100px;
            height: 100px;
            background-color: orange;
  @keyframes aa {
            from{
                width: 100px;
                height: 100px;
                background-color: orange;
            }
            to{
                width: 200px;
                height: 200px;
                background-color: yellow;
            }
        }
2、@keyframes myfirst
{
0%{background:red;}
25%{background:yellow;}
50%{background:blue;}
100%{background:green;}
}

例子

//HTML
<div class="box"></div>
//CSS
   /*.box:hover{*/
            /*animation: bb 15s ;*/
        /*}*/

 @keyframes  bb {
            0%{
                width: 100px;
                height: 100px;
                background-color: orange;
            }
            20%{
                width: 400px;
                height: 100px;
                background-color: yellow;
            }
            40%{
                width: 100px;
                height: 100px;
                background-color: yellow;
            }
            60%{
                width: 100px;
                height: 500px;
                background-color: aquamarine;
            }
            80%{
                width: 100px;
                height: 300px;
                background-color: orange;
            }
            100%{
                width: 100px;
                height: 500px;
                background-color: orange;
            }
        }
animation 动画片制作
div {animation:myfirst 2s;}
//动画片:我的第一次2秒
div{animation:myfirst 2s infinite;}
//无限循环

B、今天我掌握了什么

动画animation
//定义:@keyframes (//关键帧)
1、@keyframes myfirst
{
form{background:red;}
to{background:yellow;}
}
例子
//HTML
<div class="box"></div>

//CSS

.box{
            width: 100px;
            height: 100px;
            background-color: orange;
  @keyframes aa {
            from{
                width: 100px;
                height: 100px;
                background-color: orange;
            }
            to{
                width: 200px;
                height: 200px;
                background-color: yellow;
            }
        }
2、@keyframes myfirst
{
0%{background:red;}
25%{background:yellow;}
50%{background:blue;}
100%{background:green;}
}

例子

//HTML
<div class="box"></div>
//CSS
   /*.box:hover{*/
            /*animation: bb 15s ;*/
        /*}*/

 @keyframes  bb {
            0%{
                width: 100px;
                height: 100px;
                background-color: orange;
            }
            20%{
                width: 400px;
                height: 100px;
                background-color: yellow;
            }
            40%{
                width: 100px;
                height: 100px;
                background-color: yellow;
            }
            60%{
                width: 100px;
                height: 500px;
                background-color: aquamarine;
            }
            80%{
                width: 100px;
                height: 300px;
                background-color: orange;
            }
            100%{
                width: 100px;
                height: 500px;
                background-color: orange;
            }
        }

C、今天我没有掌握什么

animation 动画片制作
div {animation:myfirst 2s;}
//动画片:我的第一次2秒
div{animation:myfirst 2s infinite;}
//无限循环

相关文章

  • 自律给我自由—Day009

    【叶子姑娘的自律100天挑战 Day09】 2019.01.23 Day09/100 【早起】第十二天早起。 【阅...

  • 三阶段day09-前后分离、ajax

    day09: 前后分离,ajax 前后分离 ajax

  • 四、canvas

    阻止IE6下的默认行为:image.png day09

  • 2018-12-16

    Day09 Object、日期与时间、System、StringBuilder、包装类 1.Object类 1.1...

  • 五、canvas(使用图片&设置背景)

    在canvas中插入图片(需要image对象) 在canvas中设置背景(需要image对象) 渐变 day09

  • Day09

    学习了,abstract. final. 内部类,包,继承,接口,interface 和implements 抽象...

  • day09

    数组 数组硕果仅存的优点就是效率. 新生成一个数组对象时,其中所有的引用被自动初始化为null,所以检查其中的引用...

  • Day09

    变量作用域 字符串 基本概念 字符串内存分析 字符串输出和输入字符串输出: puts(str); 字符串输入: g...

  • day09

    今天学了什么 1.字符串常用的方法 1.1 length 获取字符串的长度 1.2增加 concat() 方法用...

  • day09

    A今天学了什么 1.animation 动画 B今天学会了什么 1.animation 动画 C今天没掌握什么

网友评论

      本文标题:day09

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