メニューバーにアニメーションを追加したいのですが、コードは次のとおりです
html
<ul class="my_menu">
<li class="home">
<p><a href="#">Home</a></p>
<p class="subtext">The front page</p>
</li>
<li class="about">
<p><a href="#">About</a></p>
<p class="subtext">More info</p>
</li>
</ul>
Javascript
イージング: http://buildinternet.com/live/smoothmenu/js/jquery.easing.1.3.js
脚本:
$(document).ready(function(){
$("ul.my_menu> li").mouseover(function(){
alert('hi');
$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'});
});
$("ul.my_menu > li").mouseout(function(){
alert('bye');
$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'});
});
});
最後に、「こんにちは」と「さようなら」は表示できません。私のコードに問題はありますか? 前もって感謝します。
編集: am_menu -> my_menu に変更