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();
})