我想在jQuery中製作一個發光的文本菜單,並且經過大量的努力工作仍然無法工作。我不知道我的錯誤在哪裏......任何人都可以幫助我嗎?懸停的發光文字
HTML:
<div id="list">
<div class="glow Text">HOME</div>
<div class="glow Text">CONTACT</div>
<div class="glow Text">PRODUCTS</div>
<div class="glow Text">SERVICES</div>
<div class="glow Text">BLOG</div>
</div>
CSS:
body{
background:#000
}
#list .glow{
text-shadow: #CCC 0px 0px 0px;
position:relative;
color: #CCC;
font-size: 28px;
margin: 0px;
padding: 0px;
line-height: 26px;
font-family: Arial Narrow;
}
#list .active{
position:relative;
color: #FFF;
font-size: 28px;
margin: 0px;
padding: 0px;
line-height: 26px;
font-family: Arial Narrow;
}
的jQuery:
jQuery(document).ready(function() {
jQuery('.glow').glow();
})
後重新縮進您的代碼,我發現,你的身體有沒有關閉CSS屬性。在'#000'背後放一個分號。 –