2012-07-18 39 views
0

它是我想要的基本Flash動畫。但我不想使用閃光燈。在javascript中將對象從中心移動到角點?

首先,我想在介紹屏幕上看到大標誌,並隨着動畫移動到左角。

這樣做的最佳做法是什麼?任何示例?

THX

+2

你將需要包含的代碼。打算讓其他人發佈「你嘗試過什麼?」鏈接。 – 2012-07-18 14:28:43

+1

@AndrewPeacock:http://whathaveyoutried.com – Bergi 2012-07-18 14:42:57

回答

1

您應該使用animate()

here is jsfiddle example to play with, just click

CSS:

.logo { position:absolute; left:0px; top:0px; } 

的jQuery:

$(document).ready(function(){ 
    //when document ready 
    $('.logo').animate({'left':'960px'},1000); //1000 = 1second 


    //click animation 
    $('.logo').click(function(){ 
    $(this).animate({'left':'960px'},1000); // you can set left/top or you can do it with margins 
    }); 

}); 
1

jquery animate與所有正確的價值觀能做到這一點很容易地。