ホームページ  >  記事  >  ウェブフロントエンド  >  jQuery animate と CSS3 の組み合わせは、ソース コード download_jquery でスローモーション追跡効果を実現します

jQuery animate と CSS3 の組み合わせは、ソース コード download_jquery でスローモーション追跡効果を実現します

WBOY
WBOYオリジナル
2016-05-16 15:05:063045ブラウズ

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 の組み合わせです。皆さんの参考になれば幸いです。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。