how do i make different pictures fade in and out in front page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have downtown pics of cities and i want to fade from one to the other
continually in a loop. There are five pictures in all. How do I do this?
 
javascript is one way, flash is another.

check out http://www.dynamicdrive.com for free js stuff...I know they have one there.

if your interested in Flash check out Swish it's a lot cheaper than Macromedia
 
There are also fade effects in IE

Somethign like this
document.images['SlideShow'].style.filter="blendTrans(duration=2)"
document.images['SlideShow'].style.filter="blendTrans(duration=crossFadeDuration)"
document.images['SlideShow'].filters.blendTrans.Apply()
document.images['SlideShow'].filters.blendTrans.Play()
where Slideshow is an <img> tag name where images are rotated with JS.

I used this for a while, but then found it was IE only.

Are there ways which are not specific to IE ?
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au
javascript is one way, flash is another.

check out http://www.dynamicdrive.com for free js stuff...I know they
have one there.

if your interested in Flash check out Swish it's a lot cheaper than
Macromedia


I choose Polesoft Lockspam to fight spam, and you?
http://www.polesoft.com/refer.html
 
Are there ways which are not specific to IE ?

Other than Flash, no.

--
Murray
============

Trevor L. said:
There are also fade effects in IE

Somethign like this
document.images['SlideShow'].style.filter="blendTrans(duration=2)"

document.images['SlideShow'].style.filter="blendTrans(duration=crossFadeDuration)"
document.images['SlideShow'].filters.blendTrans.Apply()
document.images['SlideShow'].filters.blendTrans.Play()
where Slideshow is an <img> tag name where images are rotated with JS.

I used this for a while, but then found it was IE only.

Are there ways which are not specific to IE ?
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au
javascript is one way, flash is another.

check out http://www.dynamicdrive.com for free js stuff...I know they
have one there.

if your interested in Flash check out Swish it's a lot cheaper than
Macromedia


I choose Polesoft Lockspam to fight spam, and you?
http://www.polesoft.com/refer.html
 
Back
Top