这是一款很好看的jQuery+CSS3文字发光特效,当鼠标悬停到文字上,文字会有发光动画效果,可以设置不同的发光颜色。
js代码
<script type=\"text/javascript\" src=\"js/neon_text.js\"></script> <script type=\"text/javascript\"> $(document).ready(function(){ $(\'.first_neon\').neonText(); $(\'.second_neon\').neonText({ textColor:\'white\', textSize:\'40pt\', neonHighlight:\'white\', neonHighlightColor:\'#008000\', neonHighlightHover:\'#FFFF00\', neonFontHover:\'white\' }); $(\'.third_neon\').neonText({ textColor:\'white\', textSize:\'40pt\', neonHighlight:\'white\', neonHighlightColor:\'#00FFFF\', neonHighlightHover:\'#7FFF00\', neonFontHover:\'white\' }); }); </script>
暂无评论内容