css 过渡

记录一下过渡,改变css样式

<style>
    div {
        height: 200px;
         200px;
        background-color: red;
        margin: 300px auto;

        transition: width 2s, background-color 3s;
        -webkit-transition: width 2s, background-color 3s;
    }

    div:hover {
         300px;
        background-color: green;
    }
</style>

<body>
    <div></div>
</body>

  

附一个连接:https://www.runoob.com/css3/css3-transitions.html

原文地址:https://www.cnblogs.com/xiaoyaolang/p/14119214.html