0
我試圖在網頁上動畫汽車圖像。不透明度命令工作但不移動。我已經把圖像標籤放在另一個大的div中,以允許圖像標籤和它的動畫的空間。Jquery動畫移動不起作用
<div class="blockone">
<div class="row blockoneComingsoon">
<h1 id="carmover" class="csoon">Click to see what we do</h1>
</div>
<div style="width:75%;margin:auto auto;top:10px" class="row">
<div style="width:300px;margin:auto auto">
<img style="top:10px"id="car" src="/components/pg.blocks/images/car.png" width="300" class="carplace" />
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
</body>
<body>
<div class="container">
</div>
<script>
$(document).ready(function(){
$('#car').animate({opacity: '0.1'});
$('#carmover').click(function(){
\t \t \t $('#car').animate({left:'100px',opacity: '1'});
\t \t \t
});
\t \t \t
\t \t \t });
\t \t </script>
這工作@giuseppe – Bineesh