• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Video abspielen beim Click auf Bild

  • Ersteller Ersteller One Man Production
  • Erstellt am Erstellt am
Status
Für weitere Antworten geschlossen.
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>
Habe hier so ne Art GIF erstellt und möchte beim Klick auf diese Slideshow ein Video abspielen lassen. Es ist genaugenommen kein GIF sondern ne Art Slideshow die ich mich Javascript erstellt habe.
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:
Also das Video soll an der stelle geladen werden an der die slideshow abgespielt wird.

Hat denn keiner eine Idee?
 
function Play() {
if (document.all) msaudio.src="Film1.wmv";
if (document.layers) document.nsaudio.play(false);

könntet ihr mir bitte sagen wie der Code für Mozilla Firefox lautet?
Der Funktioniert nur auf IE aber bei Firefox nicht.

Ich versuche schon seit ner halben stunde den code fürs firefox zu schreiben bekomm es aber nicht hin weil ich ne null darin bin.
Bitte helft mir ich verliere gleich den verstand JAHEAAAAAAA PIAZAAAA :D

Mfg omp
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben