Hello,
I have built in two examples of this Fadein-Slideshow 2.0 (don't know where to find 2.4) and it is working fine on Mozilla Firefox.
Then I have checked everything I can imagine and it just won't appear on IE8.
Only the arrows for prev and next show up. And IE8 says there is an error on this page!
Would somebody have a look on my page and the code below:
http://www.enso-verlag.de/html/test2.html
Thank you in advance and best wishes from Germany
Regina
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [200, 200], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["../assets/images/B1200.JPG"],
["../assets/images/B2200.JPG"],
["../assets/images/B3200.JPG"],
["../assets/images/B4200.JPG"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false,},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 800, //transition duration (milliseconds)
descreveal: "none",
togglerid: ""
})
var mygallery2=new fadeSlideShow({
wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
dimensions: [200, 200], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["../assets/images/B1200.JPG"],
["../assets/images/B2200.JPG"],
["../assets/images/B3200.JPG"],
["../assets/images/B4200.JPG"] //<--no trailing comma after very last image element!
],
displaymode: {type:'manual', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "always",
togglerid: "fadeshow2toggler"
})
</script>
Bookmarks