SOURCE

console 命令行工具 X clear

                    
>
console
<div class="base"></div>
       .base {
            width: 100px;
            height: 100px;
            background-color: #0EA9FF;
            border-width: 5px;
            border-style: solid;
            border-color: #5daf34;
     /*        transition-property: width, height, background-color, border-width;
            transition-duration: 2s;
            transition-timing-function: ease-in;
            transition-delay: 500ms; */
				 transition: all 2s ease-in 500ms;
        }
        .base:hover {
            width: 200px;
            height: 200px;
            background-color: #5daf34;
            border-width: 10px;
            border-color: #3a8ee6;
        }