Hello
I am trying to develop a JavaScript slide show with the fading effect (it is an IE only effect). I have everything working except I also want to put a border around the slide show. The slide show is actually just and img with a filter effect so I think this would be possible.
Here is what I have.
All of this works very well. Now I want to apply the image border. Here is what I have tried and none of them work.Code:if (document.all) { document.images.SlideShow.style.filter="blendTrans(duration=2)" document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)" document.images.SlideShow.filters.blendTrans.Apply() } Other code that gets the image source then changes the source… document.images.SlideShow.src = new_image; if (document.all) { document.images.SlideShow.filters.blendTrans.Play() }
Code:document.images.SlideShow.style = "border-color: #000000";Code:document.images.SlideShow.style.border-color = "#000000";Does someone know how I could get this to work?Code:document.images.SlideShow.style.borderColor = "#000000";
Any suggestions would be appreciated.





Bookmarks