有沒有人幫我解釋一下這個代碼的意思
li{ text-shadow: 0 0 80px #000;?
? ? color: rgba(255,255,255,0);
? ? transition: text-shadow 1s, color 1s;
}
li:hover{
? ? text-shadow: 0 0 1px #000;?
? ? color:#000;
? ? transition: text-shadow 1s, color 1s;
}
li{ text-shadow: 0 0 80px #000;?
? ? color: rgba(255,255,255,0);
? ? transition: text-shadow 1s, color 1s;
}
li:hover{
? ? text-shadow: 0 0 1px #000;?
? ? color:#000;
? ? transition: text-shadow 1s, color 1s;
}
2017-07-25
舉報
2017-07-25
文字帶陰影效果,水平陰影0px ,垂直陰影0px ,模糊距離80px ,陰影顏色#000應(yīng)該是白色吧。字體顏色為(255,255,255,0)可以查表。鼠標(biāo)劃過文字,產(chǎn)生變化的時間持續(xù)1s
下面同理,鏈接的......