我有一个带有图像的 div,希望用户在 div 内移动它,但我不希望它移到 div 之外。随着 div 的移动,它仍然会超出父区域 div 并移动到我不想要的页面的其余部分
这是我使用的风格
<style>
#area{
width: 500px;
height: 500px;
margin: auto;
clear: both;
background-color: red;
position: absolute;
}
#one{
width: 29px;
height: 29px;
background-image: url("images/fighter.png");
position: relative;
top: 50px;
}
button{
float: left;
width: 50px;
}
.gameControls{
margin: auto;
width: 150px;
}
.gameUp{
margin: 0 0 0 50px;
}
.clear{
clear: both;
}
这是我使用的 jQuery 脚本
<script>
$(document).ready(function(){
$('.gameUp').click(function(event){
$("#one").animate({"top": "-=50px"}, "slow");
});
$('.gameLeft').click(function(event){
$("#one").animate({"left": "-=50px"}, "slow");
});
$('.gameDown').click(function(event){
$("#one").animate({"top": "+=50px"}, "slow");
});
$('.gameRight').click(function(event){
$("#one").animate({"left": "+=50px"}, "slow");
});
});
</script>
还有我的身体密码
<div class="gameControls">
<button class="gameUp">↑</button>
<div class="clear"></div>
<button class="gameLeft">←</button>
<button class="gameDown">↓</button>
<button class="gameRight">→</button>
</div>
<div id="area">
<div id="one"></div>
</div>