div {
position: relative;
width: 100px;
height: 100px;
margin-bottom: 20px;
}
<div class="first" style="background:#DC143C;">
</div>
<br>
<div class="second" style="background:#CD5C5C;">
</div>
<br>
<div class="third" style="background:#FF69B4;">
</div>
<br>
<div class="fourth" style="background:#FF7F50;">
</div>
<script>
$(document).ready(function(){
$("class").click(function(){
$(".first").animate({
left: '250px'
});
});
$(".third").mouseover(function(){
$(this).animate().css({
backgroundColor: '#FFF552'
});
})
$(".first").click(function(){
$(this).animate({
width: 300
})
});
});
</script>
我完成了這個應用程序,並使它在沒有按鈕的情況下工作。但是現在我需要讓這四個物體同時移動。我不知道如何做到這一點。同時移動物體
你可以在任何事物上放置點擊事件。但按鈕有什麼問題? – ceejayoz
你的意思是沒有點擊啓動動畫? –
''我怎樣才能使這個應用程序沒有按鈕?「 - 用另外的東西替換'