gpt4 book ai didi

jquery - jquery lavalamp 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 05:33:00 25 4
gpt4 key购买 nike

出于某种原因,无论我点击哪个链接,我的背景颜色都会回到最左边的链接。任何人都知道如何让它留在点击的链接上?

CSS

#lamp {
float:left;
margin:25px 0px 0px 90px;
clear: both;
}

.lavaLamp {
position: relative;
height: 29px; width: 400px;
background: #000000 no-repeat top;
background-image:url('http://wildfire-restaurant.com/images/lampback.png');
padding: 15px; margin: 10px 0;
overflow: hidden;
float:left;
}
/* Force the list to flow horizontally */
.lavaLamp li {
float: left;
list-style: none;
}
/* Represents the background of the highlighted menu-item. */
.lavaLamp li.back {
background: no-repeat right -30px;
width: 9px; height: 30px;
z-index: 8;
position: absolute;
}
.lavaLamp li.back .left {
background: #BD5108 no-repeat top left;
height: 30px;
margin-right: 9px;
}
/* Styles for each menu-item. */
.lavaLamp li a {
position: relative; overflow: hidden;
text-decoration: none;
text-transform: uppercase;
font: bold 14px arial;
color: #fff; outline: none;
text-align: center;
height: 30px; top: 7px;
z-index: 10; letter-spacing: 0;
float: left; display: block;
margin: auto 10px;
}

j查询

<script type="text/javascript">
$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});
</script>

网站 http://wildfire-restaurant.com/

最佳答案

您需要将类current 添加到子页面的current li 中。 lavalamp 插件运行这段代码:

curr = $("li.current", this)[0] || $($li[0]).addClass("current")[0];

选择 li 类为 current 或第一项。您可以在发送到客户端之前在服务器上添加此类,无需在 javascript 中执行此操作。

更新

当您的浏览器位于“/menu/”页面时,这就是 HTML 导航的样子。请注意带有指向 Menu 链接的 li 如何具有 class="current":

<ul class="lavaLamp">
<li><a href="http://wildfire-restaurant.com/">Home</a></li>
<li class="current"><a href="http://wildfire-restaurant.com/menu/">Menu</a></li>
<li><a href="http://wildfire-restaurant.com/events/">Events</a></li>
<li><a href="http://wildfire-restaurant.com/friends/">Friends</a></li>
<li><a href="http://wildfire-restaurant.com/contact/">Contact</a></li>
<li><div class="left"></div></li>
</ul>

EVENTS 页面上,带有 Events 链接的 li 将具有类:

<li class="current"><a href="http://wildfire-restaurant.com/events/">Events</a></li>

等等

关于jquery - jquery lavalamp 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1997544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com