首先感谢您抽出宝贵时间帮助我解决这个问题。
对不起我的英语不好 ;-)
好吧,我给您一个指向我的项目的链接,这样会更容易理解我的问题
正如您在右侧看到的,您有社交面板。
我想用 jquery 为每个面板打开一个面板(最后一个提要)。在这里阅读了一些帖子后,我能够使其正常工作(我不太擅长 jquery)。但我还是有问题。
正如您在单击另一个按钮(facebook、youtube...)时会注意到的那样,面板会关闭/打开等。但按钮本身仍处于活动位置。它不会回到他的正常位置。我认为这是由于切换问题
代码:
$(".link1").click(function(){
$("#twittercontent, #youtubehome").hide();
$("#pz_fbplugin").toggle("fast");
$(this).toggleClass("active");
return false;
$(".link2, .link3").removeClass('active');
$(".link1").addClass("active");
});
$(".link2").click(function(){
$("#pz_fbplugin, #youtubehome").hide();
$("#twittercontent").toggle("fast");
$(this).toggleClass("active");
return false;
$(".link1, .link3").removeClass("active");
$(".link2").addClass("active");
});
$(".link3").click(function(){
$("#pz_fbplugin, #twittercontent").hide();
$("#youtubehome").toggle("fast");
$(this).toggleClass("active");
return false;
$(".link1, .link2").removeClass("active");
$(".link3").addClass("active");
});
CSS:
a.facebook {width: 46px;position: fixed; right:0; height: 130px; top: 175px; margin-right: 0; background: url("socialrudyfacebook.png")no-repeat; z-index:51}
a.facebook:hover{width: 129px}
a.active.facebook{width: 129px}
a.twitter{width: 46px; position: fixed; height: 130px;right: 0; top: 317px; margin-right: 0;z-index: 51;background: url("socialrudytwitter.png")no-repeat; a-index:51}
a.twitter:hover{ width: 129px}
a.active.twitter{ width: 129px}
a.youtube{width: 46px;position: fixed; height: 130px; right: 0; top: 457px ;z-index: 150; background: url("socialrudyyoutube")no-repeat; a-index:51}
a.youtube:hover{ width: 129px}
a.active.youtube{ width: 129px}
希望你能帮我解决这个问题。