我想跟隨本教程,因爲我非常喜歡這個效果。請幫忙! CSS3發光過渡問題
但問題是,我設置背景顏色爲白色。
<style>
.text-glow-hover-with-delay{
background: #FFFFFF;
color: #fff;
transition: text-shadow 3s;
-moz-transition: text-shadow 3s; /* Firefox 4 */
-webkit-transition: text-shadow 3s; /* Safari and Chrome */
-o-transition: text-shadow 3s; /* Opera */
}
.text-glow-hover-with-delay:hover{
text-shadow: 0 0 10px #fff;
}
</style>
<div class="text-glow-hover-with-delay">
Put your mouse over me and I will glow slowly.
</div>
現在它不再發光。我在這裏CSS菜單。 :(
어..你說得對!啊..我沒有理解。謝謝。現在它運行良好。 – ParkDongJu