1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| <script type="text/javascript">
$(function(){
$.mbBgndGallery.buildGallery({
containment:"body",
timer:4000,
effTimer:2000,
controls:"#controls",
grayScale:false,
// If your server allow directory listing
folderPath:"elements/",
// else:
/*images:[
"elements/1.jpg",
"elements/2.jpg",
"elements/3.jpg",
"elements/4.jpg",
"elements/5.jpg",
"elements/6.jpg",
"elements/7.jpg",
"elements/8.jpg",
"elements/9.jpg",
"elements/10.jpg",
"elements/11.jpg",
"elements/12.jpg"
],*/
onStart:function(){$("#controls .play").hide();$("#controls .pause").show();},
onPause:function(){$("#controls .play").show();$("#controls .pause").hide();},
onPlay:function(opt){$("#controls .play").hide();$("#controls .pause").show();},
onChange:function(idx){}, //idx=the zero based index of the displayed photo
onNext:function(opt){}, //opt=the options relatives to this component instance
onPrev:function(opt){} //opt=the options relatives to this component instance
});
})
</script> |
Partager