Where to download a free JavaScript banner fade manual

Asked By 50 points N/A Posted on -
qa-featured

Now that flash is less used. I  want to use the javascript to create a banner that has a fade effect and I would like to know how to do it manually if possible. or if not where can I download a free javascript banner fade manual?

SHARE
Best Answer by marsh watson
Answered By 0 points N/A #148621

Where to download a free JavaScript banner fade manual

qa-featured

Hi Wirt,

By calling the fader function you can use that effect. You can set time and align the banner with JavaScript.

<scripttype="text/javascript" src="Fader.js"></script

You can download the javascript banner fade manual from the below site.

They are free and you should be able to complete the download easily.

http://softwaretopic.informer.com/free-javascript-banner-fade-manual/

http://wowslider.com/free-image-slider-dark-matter-squares-demo.html

Thanks!

 

Best Answer
Best Answer
Answered By 0 points N/A #148622

Where to download a free JavaScript banner fade manual

qa-featured

 

Hello Wirt Yule,

You can use the following java script function along with your code for fade out effects;

function fadeOut() {

  for (i = 0; i <= 1; i += 0.01) {

    setTimeout("SetOpa(" + (1 – i) +")", i * duration);

  }

   setTimeout("fadeIn()", (duration + hidtime));

}

In this function the” for loop” plays an important role and basically the loop runs until the variable is smaller than 1. You can edit this according to your needs.

Related Questions