JS Function Code collection _ javascript tips-js tutorial

Source: Internet
Author: User
This article mainly introduces relevant information about JS Function Code collections. For more information, see 1. Simulate fade in () and fade out ().

Principle: setInterval ("opacity ++ transparency" function, time interval)

var alpha = 0;function play(){timer = setInterval(function(){alpha += 2;alpha > 100 && (alpha = 100);aImg[index].style.opacity = alpha / 100;aImg[index].style.filter = "alpha(opacity = " + alpha/100 + ")";alpha == 100 && clearInterval(timer);},40)}

2. Get and set the attribute values of element objects:

Key points: obj. currentStyle [attr]; getComputedStyle (obj, null) [attr];

Function css (obj, attr, val) {switch (arguments. length) {case 2: if (typeof arguments [1] = "string") {return obj. currentStyle? Obj. currentStyle [attr]: getComputedStyle (obj, null) [attr];} else {for (var I in attr) {obj. style [I] = attr [I] ;}} break; case 3: obj. style [attr] = val; break; default: alert ("error parameter ");}}

The above is a collection of JS function code that I will introduce to you. I hope it will be helpful to you!

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.