首頁 > web前端 > js教程 > jQuery animate和CSS3結合實現緩動追逐效果附源碼下載_jquery

jQuery animate和CSS3結合實現緩動追逐效果附源碼下載_jquery

WBOY
發布: 2016-05-16 15:05:06
原創
3102 人瀏覽過

CSS3和jquery都可以實現緩動追逐效果,但是考慮到瀏覽器的兼容性,建議使用jquery animate方法來實現。

先給大家展示下實現效果如下:

效果示範        原始碼下載

引用檔案: jquery-1.11.1.min.js

html

<div id="container">
<div id="first"></div>
<div id="second"></div>
</div>
登入後複製

jquery

var $first=$('#first');
var $second=$('#second');
(function(){
move1();
move2();
})()
function move1(){
$first.animate({
"left":220,
"top": 0
},400).animate({
"left":220,
"top":220
},400).animate({
"left":0,
"top":220
},400).animate({
"left":0,
"top":0
},function(){
move1();
})
}
function move2(){
$second.animate({
"right":220,
"bottom": 0
},400).animate({
"right":220,
"bottom":220
},400).animate({
"right":0,
"bottom":220
},400).animate({
"right":0,
"bottom":0
},function(){
move2();
})
}
登入後複製

以上所述是小編給大家介紹的jQuery animate和CSS3結合達到緩動追逐效果,希望對大家有幫助!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板