JavaScriptまたはimgまたはdivをアニメーション化した後、クリックまたはホバーイベントを利用できなくなりました。 (問題のimgは、 "n"の後ろに並んだ後の4つの大きな泡です)jqueryのアニメーションの後にイベントが機能しなくなる
これは私がちょうど答えを見つけることができない共通の問題だと確信しています。前もって感謝します!
ライブコード:ここでhttp://jboullion.com/nebuloid/index.html
は私のhtmlのdivここ
<div >
<a href="javascript:link()"> <img id="bubbleOne" alt="Staff" src="images/smallbubble.png" /></a><br />
</div>
<div>
<img id="bubbleTwo" onclick="link()" alt="Mission" src="images/smallbubble.png" /><br />
</div>
<div>
<img id="bubbleThree" href="javascript:link()" alt="Games" src="images/smallbubble.png" /><br />
</div>
私のjavascriptの -briefバージョンが
$("#bubbleOne").click(function(event)
{
fadeLogo()
if (iOS == true) {
window.scroll(0,350);
}
$("#copy").html("<span id='purp'>WE ARE NEBULOID</span> <br/><br/>We want to make great video games.<br/> We want to stretch the boundaries that define what video gaming looks and feels like.<br/> We are new developers cutting our teeth, and we have very grand and exciting projects coming soon.<br/> Our biggest upcoming project is a subtle, human, and epic science fiction adventure.");
$("#mission").css("color","#8470FF");
colorHoldM = "#8470FF";
colorHoldG = "white";
colorHoldS = "white";
colorHoldC = "white";
$("#games").css("color","white");
$("#staff").css("color","white");
$("#contact").css("color","white");
});
$("#bubbleOne").hover(function(){
$("#bubbleOne").animate({
width: "175px"}, 500);
});
$("#bubbleOne").mouseout(function(){
$("#bubbleOne").animate({
width: "110px"}, 500);
});
function fadeLogo()
{
//stuff
$('#bubbleOne').delay(1000).animate({left: '+=120', top: '-=130' }, 1000);
$('#bubbleTwo').delay(1000).animate({left: '-=50', top: '-=130' }, 1500);
$('#bubbleThree').delay(1000).animate({left: '-=230', top: '-=165' }, 2000);
//stuff
}
誰もが答えを知っている上、3種類のバリエーションがありますか?
あなたは*オプションbreak *の意味を説明できますか? – McGarnagle
申し訳ありませんが、説明がありません。 imgsのアニメーションの後、彼らはもはやクリックイベントやホバーイベントを利用できなくなります – Bullyen
彼らは私のように見えますが、その装置全体がどのように動作するのかは本当にはっきりしません。問題を再現するための手順を提示できますか? – McGarnagle