画面の上部に10pxのバーがあり、クリックすると40pxの高さまでアニメーション化し、もう一度クリックすると10pxまでアニメーション化します。divのIDを変更しようとしましたが、機能しません。どうすればこれを機能させることができますか、またはそれを行うためのより良い方法はありますか?
body html:
<div id="topbar-show"></div>
css:
#topbar-show { width: 100%; height: 10px; background-color: #000; }
#topbar-hide { width: 100%; height: 40px; background-color: #000; }
javascript:
$(document).ready(function(){
$("#topbar-show").click(function(){
$(this).animate({height:40},200).attr('id', 'topbar-hide');
});
$("#topbar-hide").click(function(){
$(this).animate({height:10},200).attr('id', 'topbar-show');
});
});