プロットの説明:飛ぶ前に足を集める必要がある鳥がいます。鳥の体、足、目はbackground-image
別々div
のものです。jQueryのanimateメソッドを使用して、脚の位置を変更し、鳥の体内に配置しました。
問題:足が鳥の体の下に入る代わりに、足は鳥の体の上にとどまります。
質問:鳥の足が下に行かないようにするために、私は何を間違っているのですか?
画像:
HTML:
<div id="gonji">
<div class="legs"></div>
<div class="body">
<div class="eye"></div>
</div>
</div>
CSS:
#gonji { width: 80px; height: 55px; position: relative; }
#gonji .body { width: 80px; height: 55px; background: url('../gonji/gonji.png') no-repeat scroll center center transparent; z-index: 998; }
#gonji .eye { width: 5px; height: 4px; background: url('../gonji/gonji_eye.png') no-repeat scroll center center transparent; position: absolute; top: 13px; left: 30px; z-index: 999; }
#gonji .legs{ width: 9px; height: 17px; background: url('../gonji/gonji_legs.png') no-repeat scroll center center transparent; position: absolute; top: 35px; left: 30px; z-index: 1 }
JS:
var $gonjiLegs = $("#gonji").find(".legs");
var gonjiOrigLegsPos = $gonjiLegs.position();
$gonjiLegs.animate({ 'top': gonjiOrigLegsPos.top - 17 }, 'fast');