啥情況,照著代碼敲,畫面顯示不出來
.box{
width:100px;
height:100px;
background:#000;
}
.demo-1{
&:hover{
transform:rotate(45deg);
}
transition: transform 2s linear 2s;
}
.box{
width:100px;
height:100px;
background:#000;
}
.demo-1{
&:hover{
transform:rotate(45deg);
}
transition: transform 2s linear 2s;
}
2019-12-06
舉報(bào)
2019-12-23
哦哦,謝謝哈
2019-12-11
&:hover 這是sass的寫法,要安裝sass然后編譯成css的
2019-12-08
是的啊
2019-12-08
用css寫的??