Hast du evtl. ein Beispiel in JavaScript?
Hallo Zummy!
<script type="text/javascript">
var SlideShowSpeed = 5
var Picture = new Array()
var Caption = new Array()
var maxWidth = 0
var maxHeight = 0
Picture[1] = "images/bild1.jpg"
Picture[2] = "images/bild1.jpg"
Picture[3] = "images/bild1.jpg"
Picture[4] = "images/bild1.jpg"
Picture[5] = "images/bild1.jpg"
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];
}
function runSlideShow(){
if (document.all && !window.opera){
document.images.anzeige.style.filter="blendTrans(duration=1)";
document.images.anzeige.filters.blendTrans.Apply();
}
document.images.anzeige.src = preLoad[jss].src;
if (document.all && !window.opera) document.images.anzeige.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed * 1000);
}
</SCRIPT>
Grafik normal einbinden
<img src="images/bild1.jpg" name="anzeige" width="" height="" alt="">
ganz wichtig ^^^^^^^^^^^^^ einfügen!
Ciao, Tyrotris