JS simple to achieve the click-and-Move method _javascript Skills

Source: Internet
Author: User
Tags setinterval

The example of this article is about JS simple realization of click-and-Move method. Share to everyone for your reference. The specific analysis is as follows:

This can be achieved click to the right, the box to the right, click Left, the box to the left to move the effect

can use setinterval to achieve too long time, div move how long distance to achieve the motion effect.

Point one: If the left distance of the element is less than the target distance, it is a forward move, otherwise it is a negative move

if (Run.offsetleft <target) {
speed = 2;
} else{
speed =-2;
}

Point two: If the left distance of the element equals the target distance, stop the timer, otherwise the left distance of the element equals the current left distance plus the speed value.

if (Run.offsetleft ==target) {
clearinterval (timer);
}
else{
run.style.left = run.offsetleft +speed + "px";
}

On the Code

<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">  

The

wants this article to help you with your JavaScript programming.

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.