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