あなたは、ターゲットは「」要素または私は、あなたが私が入れたリンクをテストすることができjsfiddleを行っていない
「リンク」ボックスであるかどうかをテストする必要が
http://jsfiddle.net/7QJPH/5/
また、このjavascriptをテストすることもできます。「リンク」ボックスでのみ動作し、他の部分に複製する必要があります。
$(document).ready(function() {
$('#kogelclip').draggable();
$('#vulpen').draggable();
$('#bio').toggle(function() {
$(this).animate({
top: '+=390'
}, {
duration: 750,
easing: 'swing'
});
}, function() {
$(this).animate({
top: '-=390'
}, {
duration: 750,
easing: 'swing'
});
});
$('#discografie').toggle(function() {
$(this).animate({
left: '+=560'
}, {
duration: 750,
easing: 'swing'
});
}, function() {
$(this).animate({
left: '-=560'
}, {
duration: 750,
easing: 'swing'
});
});
$('#links').toggle(function(event) {
if (!$(event.target).is('a')) {
$(this).animate({
right: '+=560'
}, {
duration: 750,
easing: 'swing'
});
} else {
document.location.href = $(event.target).attr('href');
}
}, function(event) {
if (!$(event.target).is('a')) {
$(this).animate({
right: '-=560'
}, {
duration: 750,
easing: 'swing'
});
} else {
document.location.href = $(event.target).attr('href');
}
});
});
が来ます。いくつかのコードを提供します... – ArVan
どこが問題ですか?あなたが提供したページにリンクが表示されません... – matino
あなたの問題をより詳しく説明する必要があります。 – Matt