Example of implementing slow-moving chase with animate and CSS3 in jquery

Source: Internet
Author: User

CSS3 and jquery can all implement ease chasing, but with browser compatibility, the jquery animate method is recommended. The implementation effect is as follows: Reference file: Jquery-1.11.1.min.js

Html

<div id= "Container" >
<div id= "a" ></div>
<div id= "Second" ></div>
</div>


Code
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 ();
})
}

The effect is as follows


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.