클릭질로 점프 시키키
$(".hman").live('click', function() {$(this).animate({bottom:300},600).animate({bottom:77}, 600)});
스페이스키로 점프 시키키
$(document).bind('keydown',function(e){if(e.which!=32) return;$(".hman").animate({bottom:300},600).animate({bottom:77},600)});
그냥 잉여짓
$(".hman").live('click', function() {$(this).animate({bottom:300},600).animate({bottom:77}, 600)});
스페이스키로 점프 시키키
$(document).bind('keydown',function(e){if(e.which!=32) return;$(".hman").animate({bottom:300},600).animate({bottom:77},600)});
그냥 잉여짓


