在导航菜单后面发光

时间:2013-06-20 12:41:04

标签: html5 css3 css-transitions

我正在导航中创建一个带有发光效果的小动画。 如图所示,Glow位于导航菜单后面。 我尝试但不清楚结果,我需要相同的结果如图所示。

http://jsfiddle.net/naresh_kumar/GCpDW/5/

enter image description here

HTML

    <div id="topnav" style="float:right;">
    <ul class="nav clearfix">
        <li id="menu-item-6">
            <a href="">Home</a>
        </li>
        <li id="menu-item-8">
            <a>Tutor Videos</a>
        </li>
        <li id="menu-item-7">
            <a>Download Font</a>
        </li>
        <li id="menu-item-9">
            <a>news</a>
        </li>
       </ul> 
    </div>

CSS

    body{background:#000000;}
ul { margin-left: 20px; padding: 0; }
#topnav {
    font-size: 8pt;
    font-weight: bold;
    margin-top: 2%;
    float: left;
    font-size: 8pt;
    margin-bottom: 0;
    margin-left: 63px;
    margin-right: 0;
    margin-top: 4% !important;
    padding: 0;
    width: 60%;
}

#topnav ul {
    background: none repeat scroll 0 0 #E2E2DE;
    border: 3px solid #FFFFFF;
    line-height: 1;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

#topnav ul li {
    float: left;
    width: auto;
}

#topnav ul li a {
    border-bottom: 15px solid transparent;
    border-top: 15px solid transparent;
    display: block;
    line-height: 30px;
    margin: -17px 0;
}

#topnav ul a {
    color: #000000 !important;
    display: block;
    line-height: 24px;
    padding: 5px 10px;
    position: relative;
    text-decoration: none;
    z-index: 90;
}

#topnav ul a:hover, #topnav ul ul a:hover {
    border-color: white;
    color: #0A0A0A;
     box-shadow: 0 0 50px gold, 0 0 150px gold;
}
.clearfix:after, blockquote:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.clearfix, blockquote {
    display: block;
}
.clearfix, blockquote {
    display: inline-block;
}

1 个答案:

答案 0 :(得分:0)

使用CSS3将菜单放在菜单后面是很困难的,但是通过一些小的调整(包括更精细地使用颜色进行发光),你可以使你已经制作的例子看起来非常合理。发光在菜单顶部

#topnav ul a:hover, #topnav ul ul a:hover {
  border-color: white;
  color: #0A0A0A;
  box-shadow: 0 0 100px #ffffee, 0 0 100px #ffffee;
}