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; }
.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; }