我在 div 中放置了一个动画 div,我只希望这个 div 能够在它的父级空间中移动。我该怎么做呢?
简单地说:我希望青蛙包含在青蛙中。
HTML
<div id="frogger"> <!-- Animate start -->
<button id="left">«</button> <button id="right">»</button>
<div id="frog">
</div>
</div> <!-- Animate end -->
CSS
#frogger
{
width: 500px;
height: 500px;
border: solid;
margin: 0 auto;
}
#frog
{
position:relative;
background-color:#abc;
left:50px;
width:90px;
height:90px;
margin:5px;
}
Javascript
$("#right").click(function(){
if ($(':animated').length) {
return false;
} else {
$("#frog").animate({"left": "+=50px"}, {queue: false}, "slow");
}
});
$("#left").click(function(){
if ($(':animated').length) {
return false;
} else {
$("#frog").animate({"left": "-=50px"}, {queue: false}, "slow");
}
});