コード :
HTML :
<div id="Container" class="Container">
<div id="PLayer" class="player" ></div>
</div>
CSS:
<style type="text/css">
.Container
{
width:200px;
height:200px;
}
.player
{
width:10px;
height:10px;
background-color:Red;
position: absolute;
}
</style>
js:
$("body").keydown(function (e) {
var KeyID = e.KeyCode || e.which;
if (KeyID === 39) //right
{
$("#Player").animate({ 'right': '20px' });
}
});
しかし、プレーヤーはまったく動かないようです。何か提案はありますか?