jQueryについてさらに別の質問があります:
だから私はこのコードを持っています:
$(document).ready(function(){
$(this).click(function(){
$("#block1").animate({width:7em,height:7em});
$("#block2").animate({width:7em,height:7em});
$("#block3").animate({width:7em,height:7em});
$("#block4").animate({width:7em,height:7em});
$("#block5").animate({width:7em,height:7em,function(){
$(this).animate({width:20em,height:20em,top:4em,left:8em});
});
});
});
これは、いくつかの「ポストイット」型のボックスを
1に戻すことになっています。1:すべてのボックスを元の位置に戻し、サイズ
2:元の位置から飛び出して、クリックすると拡大しながら画面の中央に移動します。
なぜこれが機能しないのか分かりますか?(私はcssホバーを望んでいませんが、cssを介してこれを行う別の方法があれば、私はそれで大丈夫です!!)