Nicht mehr ganz neu hier
Hallo zusammen.
Ich steh vor einem kleinen Problem.
Ich möchte eine art Newsslideshow erstellen.
Da meine Codingfähigkeiten ein wenig begrenzt sind, habe ich mir ein
fertiges Javascript gezogen und wollte nun statt Bilder eine HTML seite öffnen lassen.
leider werden diese nicht angezeigt =(
das ist das Script:
<img src="gfxu/dg0.gif" name="photoslider">
<form method="POST" name="rotater">
<script language="JavaScript1.1">
var photos=new Array()
var which=0
/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="gfxu/dg0.gif"
photos[1]="gfxu/dg1.gif"
photos[2]="gfxu/dg2.gif"
photos[3]="gfxu/dg3.gif"
photos[4]="gfxu/dg4.gif"
photos[5]="gfxu/dg5.gif"
photos[6]="gfxu/dg6.gif"
photos[7]="gfxu/dg7.gif"
photos[8]="gfxu/dg8.gif"
photos[9]="gfxu/dg9.gif"
function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}
function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='Ende der Bilder'
//which=1;backward();return false
}
</script>
<input type="button" value="<<zurück" name="B2"
onClick="backward()"> <input type="button" value="weiter>>" name="B1"
onClick="forward()"><br>
<a href="#" onClick="which=1;backward();return false">neu starten</a>
</form>
Vielen Dank schonmal im Voraus !
Ich steh vor einem kleinen Problem.
Ich möchte eine art Newsslideshow erstellen.
Da meine Codingfähigkeiten ein wenig begrenzt sind, habe ich mir ein
fertiges Javascript gezogen und wollte nun statt Bilder eine HTML seite öffnen lassen.
leider werden diese nicht angezeigt =(
das ist das Script:
<img src="gfxu/dg0.gif" name="photoslider">
<form method="POST" name="rotater">
<script language="JavaScript1.1">
var photos=new Array()
var which=0
/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="gfxu/dg0.gif"
photos[1]="gfxu/dg1.gif"
photos[2]="gfxu/dg2.gif"
photos[3]="gfxu/dg3.gif"
photos[4]="gfxu/dg4.gif"
photos[5]="gfxu/dg5.gif"
photos[6]="gfxu/dg6.gif"
photos[7]="gfxu/dg7.gif"
photos[8]="gfxu/dg8.gif"
photos[9]="gfxu/dg9.gif"
function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}
function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='Ende der Bilder'
//which=1;backward();return false
}
</script>
<input type="button" value="<<zurück" name="B2"
onClick="backward()"> <input type="button" value="weiter>>" name="B1"
onClick="forward()"><br>
<a href="#" onClick="which=1;backward();return false">neu starten</a>
</form>
Vielen Dank schonmal im Voraus !