Swf pleinecran sous dreamweaver
Fermé
jean ernest
-
22 mars 2012 à 23:04
RAD ZONE Messages postés 5230 Date d'inscription samedi 20 janvier 2007 Statut Contributeur Dernière intervention 17 août 2024 - 23 mars 2012 à 05:49
RAD ZONE Messages postés 5230 Date d'inscription samedi 20 janvier 2007 Statut Contributeur Dernière intervention 17 août 2024 - 23 mars 2012 à 05:49
A voir également:
- Swf pleinecran sous dreamweaver
- Swf opener - Télécharger - Lecture
- Swf file player - Télécharger - Lecture
- Swf decompiler - Télécharger - Animation
- Sothink swf decompiler - Télécharger - Animation
- Swf to exe - Télécharger - Animation
2 réponses
graffx
Messages postés
6506
Date d'inscription
jeudi 22 mars 2007
Statut
Contributeur
Dernière intervention
24 mars 2019
1 975
22 mars 2012 à 23:25
22 mars 2012 à 23:25
Logiquement un lien direct vers ton swf sans dimension, enleve le height et width et ca devrait faire l' affaire, enfin je pense.
RAD ZONE
Messages postés
5230
Date d'inscription
samedi 20 janvier 2007
Statut
Contributeur
Dernière intervention
17 août 2024
1 360
23 mars 2012 à 05:49
23 mars 2012 à 05:49
Salut
cela ce fait en CSS !
1 : tu met
width="100%" height="100%" au swf
2 : tu insert ton swf dans une div
<div id="plein_ecran"> par exemple
3 : tu met cela dans le CSS
html, body, #plein_ecran {
height: 100%;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
}
ce qui donne une page comme cela !
a+
cela ce fait en CSS !
1 : tu met
width="100%" height="100%" au swf
2 : tu insert ton swf dans une div
<div id="plein_ecran"> par exemple
3 : tu met cela dans le CSS
html, body, #plein_ecran {
height: 100%;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
}
ce qui donne une page comme cela !
<!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" xml:lang="en" lang="en"> <head> <title> RAD ZONE Webcreation </title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <!-- CSS A AJOUTER POUR LE 100% --> <style type="text/css" media="screen"> html, body, #plein_ecran { height: 100%; } body { margin: 0; padding: 0; overflow: hidden; } </style> <!-- FIN POUR LE 100% --> </head> <body> <div id="plein_ecran"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="flash"> <param name="movie" value="site.swf" /> <param name="quality" value="high" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="site.swf" width="100%" height="100%"> <param name="quality" value="high" /> <!--<![endif]--> <a href="https://get.adobe.com/flashplayer/"> <img src="https://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> </body> </html>
a+