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의 조합입니다. 모두에게 도움이 되길 바랍니다!