最佳答案
我需要一个 jQuery 脚本,它将查看是否有任何元素具有特定的类,并执行类似于更改位置的操作。
就是这条路,但我不认为这条路行得通。
$("a.contact").toggle(function() {
$("#contact").animate({
right: '0'
}, 2000);
if ($("#about").hasClass("opened")) {
$("#about").animate({
right: -700 + "px"
}, 2000);
}
}, function() {
$("#contact").animate({
right: -700 + "px"
}, 2000);
});