1

ドキュメントが読み込まれるときに、ボックスを右から左に50ピクセル移動しようとしています。私はかなりの検索を行い、困惑しました。

最初はこれは簡単だと思っていたので、クリックイベントをコーディングして楽しむつもりでしたが、ここでは行き詰まりました。

これがHTMLです

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />

    <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
    Remove this if you use the .htaccess -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
    <link rel="stylesheet" href="css/gameCSS.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
    <meta name="apple-mobile-web-app-capable" content="yes" /> 

    <link rel="apple-touch-icon" href="media/apple-touch-icon.png"/>
    <link href="media/apple-touch-startup-image-iphone.png" media="(device-width: 320px)" rel="apple-touch-startup-image"/>
    <link href="media/apple-touch-startup-image-iphone-retina.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/>

    <script src="js/jgame.js"></script>

    <title>HTML</title>
    <meta name="description" content="" />
    <meta name="author" content="CREEE" />



</head>

<body>
    <div id="home" data-role="page">

    <div id="box">

    </div>


    <div id="obs">

    </div>


    </div>


</body>

これが私のCSSです

#box {

width: 40px;
height: 40px;

background-color: blue;

margin: 1px;
top:10px;
position:absolute;}

#obs {width: 15px;
height: 15px;
border: solid, 2px;
background-color: red;}

これが私のjQueryです

$(document).ready(function() {   
$('#box').animate({left: "+=50px",'slow'}, 1000);
});
4

1 に答える 1

2

これで試してみてください:

$('#box').animate({left: "+=50px"}, 1000);

削除し'slow'ます。ここでフィドルをチェックアウト

I am trying to move the box from right to left, by 50px when the Document loads.
このコメントは正しくありませんあなたのコードはに移動し#boxますleft to right by 50px

于 2013-03-06T06:24:33.253 に答える