|
Dia-Show |
|
| Dieser Teil des Scripts kommt in den Headbereich |
|
|
<SCRIPT LANGUAGE="JavaScript"> |
|
| Dieser Teil des Scripts kommt in den Bodybereich | |
| <form name=slideform> <table cellspacing=1 cellpadding=4 bgcolor="#000000" align="center"> <tr> <td align=center bgcolor="white"> <b>Image Slideshow</b> </td> </tr> <tr> <td align=center bgcolor="white" width=200 height=150> <img src="../images/bild1.jpg" name="show"> </td> </tr> <tr> <td align=center bgcolor="#C0C0C0"> <select name="slide" onChange="change();"> <option value="../images/bild1.jpg" selected>Bild1 <option value="../images/bild2.jpg">Bild2 <option value="../images/bild3.jpg">Bild3 <option value="../images/bild4.jpg">Bild4 <option value="../images/bild5.jpg">Bild5 <option value="../images/bild6.jpg">Bild6 <option value="../images/bild7.jpg">Bild7 <option value="../images/bild8.jpg">Bild8 <option value="../images/bild9.jpg">Bild9 <option value="../images/bild10.jpg">Bild10 </select> </td> </tr> <tr> <td align=center bgcolor="#C0C0C0"> <input type=button onClick="first();" value="|<<" title="Beginning" name="button"> <input type=button onClick="previous();" value="<<" title="Previous" name="button"> <input type=button name="slidebutton" onClick="ap(this.value);" value="Start" title="AutoPlay"> <input type=button onClick="next();" value=">>" title="Next" name="button"> <input type=button onClick="last();" value=">>|" title="End" name="button"> </td> </tr> </table> </form> |
|