A voir également:
- [HTML]fermeture popup apès x secondes?
- Editeur html - Télécharger - HTML
- Direct x runtime - Télécharger - Pilotes & Matériel
- Forcer la fermeture d'un programme - Guide
- American history x 2 - Forum Cinéma / Télé
- Homday x-pert mode d'emploi ✓ - Forum Casque et écouteurs
1 réponse
problème résolu !
pour ceux qui se poseraient des questions par la suite il suffit d'insérer:
"<body onload="window.setTimeout('self.close()',5000)"> "
dans le "popup".
voilà le code complet pour faire un bon exemple.
pour ceux qui se poseraient des questions par la suite il suffit d'insérer:
"<body onload="window.setTimeout('self.close()',5000)"> "
dans le "popup".
voilà le code complet pour faire un bon exemple.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Gestion Camera Mobile</title> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <link rel="stylesheet" type="text/css" media="all" href="css/base.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/base2.css" /> <link rel="stylesheet" type="text/css" media="screen" href="screen.css" /> </head> <body onload="window.setTimeout('self.close()',5000)"> <OBJECT ID="AxisCamControl" CLASSID="CLSID:917623D1-D8E5-11D2-BE8B-00104B06BDE3" WIDTH="320" HEIGHT="240" CODEBASE="http://157.164.95.212/activex/AxisCamControl.cab#Version=2,23,0,0"> <PARAM NAME=DisplaySoundPanel VALUE=0> <PARAM NAME=URL VALUE="http://157.164.95.212/axis-cgi/mjpg/video.cgi?camera=&resolution=320x240"> </OBJECT> <!--<applet archive="http://157.164.95.212/java/AxisCamApplet.zip" codeBase="http://157.164.95.212/java/" code="http://157.164.95.212/java/AxisCamApplet.class" height="320" width="240"> <param name="StreamLocation" value="http://157.164.95.212/axis-cgi/mjpg/video.cgi?camera=&showlength=1&resolution=640x480"> </applet>--> </body> </html>