Analysis of javascript uniform motion implementation method _ javascript tips-js tutorial

Source: Internet
Author: User
This article mainly introduces the implementation method of javascript uniform motion, and analyzes the specific implementation steps and precautions of JavaScript Uniform Motion in the form of examples, for more information, see the example in this article. We will share this with you for your reference. The details are as follows:

Procedure:

1. Clear the timer
2. Enable Timer
3. Whether the motion is completed: a. If the motion is completed, the timer is cleared; B. If the motion is not completed, continue.

Uniform Motion stop condition: the distance is close enough to Math. abs (of course distance-target distance) <Minimum motion distance

The running effect is as follows:

Example of Uniform Motion of p (simple motion:

 JavaScript Uniform MotionScript window. onload = function () {var oBtn = document. getElementById ('btn1 '); var oDiv = document. getElementById ('p1'); oBtn. onclick = function () {startMove (oDiv, 300) ;}; var timer = null; function startMove (obj, iTarget) {clearInterval (timer ); timer = setInterval (function () {var iSpeed = 0; if (obj. offsetLeft <iTarget) {iSpeed = 7;} else {iSpeed =-7;} if (Math. abs (obj. offsetLeft-iTarget) <7) {clearInterval (timer); obj. style. left = iTarget + 'px ';} else {obj. style. left = obj. offsetLeft + iSpeed + 'px '; }}, 30);} scriptMobile

Related Article

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.