您当前的位置: 首页 > 

壹小俊

暂无认证

  • 0浏览

    0关注

    885博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

第六课--过渡

壹小俊 发布时间:2019-08-15 10:46:04 ,浏览量:0

transition:动画持续时间,动画属性的作用是赋值给元素,整个元素都在使用这个属性



    
    过渡


    .div1 {
        width: 200px;
        height: 300px;
        background-color: #4cae4c;
        transition: 5s;
    }

    .div1:hover {

        width: 500px;
    }

    .div2 {
        width: 100px;
        height: 200px;
        background-color: #5bc0de;
        transition: width 2s, height 2s, transform 2s;
    }

    .div2:hover {
        width: 500px;
        height: 600px;
        transform: rotate(180deg);
    }


 

关注
打赏
1664335782
查看更多评论
立即登录/注册

微信扫码登录

0.0614s