This:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.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>
Should only appear once in the page's source code and belongs in the head of the page.
Next, get rid of all three of these:
Code:
var mygallery2=new fadeSlideShow
Finally, number or otherwise give unique names and id's to each of the three shows:
Code:
<script type="text/javascript">
var mygallery1=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [200, 120], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["voda1.png", "burak-vodafone.php", "", ""],
["voda2.png", "burak-vodafone.php", "", ""],
["voda3.png", "burak-vodafone.php"],
["voda4.png", "burak-vodafone.php"],
["voda5.png", "burak-vodafone.php"],
["voda6.png", "burak-vodafone.php"],
["voda7.png", "burak-vodafone.php"],
["voda8.png", "burak-vodafone.php"],
["voda9.png", "burak-vodafone.php"],
["voda10.png", "burak-vodafone.php"]
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
<div id="fadeshow1"></div>
Code:
<script type="text/javascript">
var mygallery2=new fadeSlideShow({
wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
dimensions: [200, 120], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["aksu.jpg", "pazarcik-aksu-lokantasi.php", "", ""],
["kose.jpg", "pazarcik-aksu-lokantasi.php", "", ""],
["tezgah.png", "pazarcik-aksu-lokantasi.php", "", ""],
["IMG_1123.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1125.jpg", "pazarcik-aksu-lokantasi.php"],
["emmi.png", "pazarcik-aksu-lokantasi.php"],
["IMG_1128.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1130.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1134.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1135.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1138.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1143.jpg", "pazarcik-aksu-lokantasi.php"],
["IMG_1139.jpg", "pazarcik-aksu-lokantasi.php"]
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
<div id="fadeshow2"></div>
Code:
<script type="text/javascript">
var mygallery3=new fadeSlideShow({
wrapperid: "fadeshow3", //ID of blank DIV on page to house Slideshow
dimensions: [120, 240], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["bazo2.png", "bazo-vestel.php", "", ""],
["bazo1.jpg", "bazo-vestel.php", "", ""],
["bazo4.jpg", "bazo-vestel.php", "", ""],
["bd-11.jpg", "bazo-vestel.php", "", ""],
["bazo-tv.jpg", "bazo-vestel.php", "", ""],
["bazo3.jpg", "bazo-vestel.php", "", ""]
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
<div id="fadeshow3"></div>
Bookmarks