O
One Man Production
Guest
HTML:
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
var AnzBilder = 26;
var bild = new Array(AnzBilder);
bild[1] = "videoframe 6 [0.20s] -- Film_0001.jpg"
bild[2] = "videoframe 7 [0.24s] -- Film_0001.jpg"
bild[3] = "videoframe 8 [0.28s] -- Film_0001.jpg"
bild[4] = "videoframe 9 [0.32s] -- Film_0001.jpg"
bild[5] = "videoframe 10 [0.36s] -- Film_0001.jpg"
bild[6] = "videoframe 11 [0.40s] -- Film_0001.jpg"
bild[7] = "videoframe 12 [0.44s] -- Film_0001.jpg"
bild[8] = "videoframe 13 [0.48s] -- Film_0001.jpg"
bild[9] = "videoframe 14 [0.52s] -- Film_0001.jpg"
bild[10] = "videoframe 15 [0.56s] -- Film_0001.jpg"
bild[11] = "videoframe 16 [0.60s] -- Film_0001.jpg"
bild[12] = "videoframe 17 [0.64s] -- Film_0001.jpg"
bild[13] = "videoframe 18 [0.68s] -- Film_0001.jpg"
bild[14] = "videoframe 19 [0.72s] -- Film_0001.jpg"
bild[15] = "videoframe 20 [0.76s] -- Film_0001.jpg"
bild[16] = "videoframe 21 [0.80s] -- Film_0001.jpg"
bild[17] = "videoframe 22 [0.84s] -- Film_0001.jpg"
bild[18] = "videoframe 23 [0.88s] -- Film_0001.jpg"
bild[19] = "videoframe 24 [0.92s] -- Film_0001.jpg"
bild[20] = "videoframe 25 [0.96s] -- Film_0001.jpg"
bild[21] = "videoframe 26 [1.00s] -- Film_0001.jpg"
bild[22] = "videoframe 27 [1.04s] -- Film_0001.jpg"
bild[23] = "videoframe 28 [1.08s] -- Film_0001.jpg"
bild[24] = "videoframe 29 [1.12s] -- Film_0001.jpg"
bild[25] = "videoframe 30 [1.16s] -- Film_0001.jpg"
bild[26] = "videoframe 31 [1.20s] -- Film_0001.jpg"
function animation()
{
if (bildnr>=AnzBilder)
{
bildnr=1;
}
else
{
bildnr = bildnr + 1;
}
document.images[0].src = bild[bildnr];
bildfolge = setTimeout("animation()",max);
};
<!--
function Play() {
if (document.all) msaudio.src="Film1.wmv";
if (document.layers) document.nsaudio.play(false);
}
//-->
</SCRIPT>
<bgsound id="msaudio" src="Film1.wmv" loop="1">
<title>Animation</title>
</head>
<body onLoad="max=60000; bildnr=1; animation()" onUnload="clearTimeout(bildfolge);" text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<a onMouseover="Play();">
<embed name="nsaudio" SRC="Film1.wmv" mastersound hidden="true" autostart="false">
<div align="center"><IMG HEIGHT="440" WIDTH="330" onmouseover="animation()" onmouseout="animation()" SRC="videoframe 6 [0.20s] -- Film_0001.jpg" ALT=""></div>
</a>
</body>
</html>
Nur die Frage ist wie mache ich das ?
Ich habe es so versucht aber das geht irgendwie nicht.
Man soll nur das Video sehen können ohne steuerelemente.
Habt ihr vielleicht eine idee`?
Zuletzt bearbeitet von einem Moderator: