CSS之过渡

.box{
    width: 200px;
    height: 200px;
    background-color: #FFC0CB;
    /*宽度200,悬停的时候宽度到600,花费1秒*/
    /* transition: width 1s,background-color 2s; */
    /* all 代表所有属性*/
    transition: all 2s;
}
.box:hover{
    width: 600px;
    background-color: red;
}

 

posted @ 2022-05-12 16:06  hi123hi159  阅读(27)  评论(0)    收藏  举报