我的熔岩灯导航基本上有效,但我有一个小问题。
我正在使用此LavaLamp menu plugin并尝试让我的导航看起来像这样:
所以我有它的工作,除了我遇到的问题是当熔岩灯图像不在它们之上时我需要链接为一种颜色(黑色),当它是时,我需要白色。 Hover工作正常,但问题来自班级当前(熔岩灯悬停效果默认为班级电流)。
如果我为班级当前设置白色链接,即使将鼠标悬停在其他导航链接上,该链接也会保持白色。
我假设一些简单的JavaScript可以解决这个问题,但我不是那么知识,如果有人可以与我分享解决方案,我会很感激。
答案 0 :(得分:1)
只需重写插件即可添加颜色吗?
//lavalamp plugin
(function($) {
$.fn.lavaLamp = function(o) {
o = $.extend({
fx: "linear",
speed: 500,
click: function() {}
}, o || {});
return this.each(function() {
var me = $(this),
noop = function() {},
$back = $('<li class="back"><div class="left"></div></li>').appendTo(me),
$li = $("li", this),
curr = $("li.current", this)[0] || $($li[0]).addClass("current")[0];
$li.not(".back").hover(function() {
move(this);
}, noop);
$(this).hover(noop, function() {
move(curr);
});
$li.click(function(e) {
setCurr(this);
return o.click.apply(this, [e, this]);
});
setCurr(curr);
function setCurr(el) {
$back.css({
"left": el.offsetLeft + "px",
"width": el.offsetWidth + "px"
});
curr = el;
};
function move(el) {
$(el).find('a')
.css('color', o.hover_color).end()
.siblings('li').find('a')
.css('color', o.color);
$back.each(function() {
$(this).dequeue();
}).animate({
width: el.offsetWidth,
left: el.offsetLeft
}, o.speed, o.fx);
};
});
};
})(jQuery);
使用颜色调用插件
$(document).ready(function() {
$(".lavaLamp").lavaLamp({
fx: "backout",
speed: 700,
color: "#fff",
hover_color: "#000"
});
});
添加了颜色动画(需要缓动插件/ jQuery UI) - FIDDLE
答案 1 :(得分:0)
设置你的颜色!像这样重要
color:black !important;
可能会帮助你
答案 2 :(得分:0)
请参阅更新的小提琴:http://jsfiddle.net/DRPsA/5/
基本上,您可以添加:
$(".lavaLampWithImage .current").addClass("theCurrentLink");
$(".lavaLampWithImage").hover(function() {
$(this).find(".current").removeClass("current"); } ,
function() {
$(this).find(".theCurrentLink").addClass("current"); }
);