Js implements multiple different motion effects on the same page, and js implements multiple pages

Source: Internet
Author: User

Js implements multiple different motion effects on the same page, and js implements multiple pages

This example describes how js achieves multiple different motion effects on the same page. Share it with you for your reference. The specific analysis is as follows:

Key Aspect 1:

function getstyle(obj,name){if(obj.currentStyle){return obj.currentStyle[name];}else{return getComputedStyle(obj,false)[name];}}

From the style sheet, take the value based on the id and attribute name.

Key Aspect 2:

if(attr == "opacity"){cur = Math.round(parseFloat(getstyle(obj,attr))*100);}else{cur = parseInt(getstyle(obj,attr));}

If the transparency value is set, because it may be a decimal point, you need to use parseFloat, And then there may be decimal places, and round them to an integer using the round method.

If you set a non-transparency value, use parseInt to take only the numerical value

Other notes are mentioned in the previous sections and will not be described here.

Finally, run the following code:

<! DOCTYPE html> 

I hope this article will help you design javascript programs.

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.