[HTML] compatibilité firefox/internet explorer
bonjour je suis débutant en html et je dois faire une page HTML pour un projet en cours. Et j'ai coder et vérifier chaque fois avec firefox et au moment de passer sous internet explorer les anims flash ne s'affiche plus. Et j'ai 2, 3 problèmes avec mon PHP mais ça il faut que je cherche encore.
J'ai beau chercher sur internet mais je ne trouve rien et malheureusement le site doit être prêt pour dans très peu de temps. Je me permet donc de faire appel au personne qui s'y connaissent pour me dire mes erreurs. Et j'étais déja pas très amoureux de IE mais là c'est encore pire.
voici mon code:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
| <!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="fr" lang="fr">
<head>
<title>Eti'poule</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
body {
margin: 0;
padding: 0;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.8em;
background-color: #CC9966; /*couleur de fond beige*/
}
.conteneur { /*le conteneur global du site au centre */
position: relative;
width: 800px;
margin: 0 auto;
}
.header {
height: 150px;
background-color: #99CCCC;
}
.menu {
position: absolute;
left:0;
width: 171px;
height: 462px;
background-color:#CCCCFF;
}
.frame {
margin-left: 171px;
width: auto;
height: 462px;
background-color:#FFFFFF;
overflow: auto;
}
.footer {
height: 20px;
background-color: #CC9966;
}
p {
margin: 0 0 5px 0;
}
.menugauche {
list-style-type: none;
margin: 0;
padding:0;
}
.menugauche li {
margin-bottom: 5px;
}
.menugauche a {
margin: 0 2px;
color: #000000;
text-decoration: underline;
}
.menugauche a:hover {
text-decoration: none;
}
-->
</style>
</head>
<body>
<div class="conteneur">
<div class="header">
<!-- insert anim flash menu oeuf-->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="800" height="150">
<param name="movie" value=">
<param name="quality" value="high">
<embed src="flash/menu_oeuf.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="150"></embed></object>
</div>
<div class="menu">
<!-- insert anim flash menu fonction-->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="171" height="462">
<param name="movie" value=">
<param name="quality" value="high">
<embed src="flash/menu_gauche.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="171" height="462"></embed></object>
</div>
<div class="frame">
Pjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
<?php
include ("jpgraph14/src/jpgraph.php");
include ("jpgraph14/src/jpgraph_canvas.php");
$ydata = array(8,3,16,2,7,25,16);
// Creation du graphique
$graph = new Graph(300,200);
$graph->SetScale("textlin");
// Création du système de points
$lineplot=new LinePlot($ydata);
// On rajoute les points au graphique
$graph->Add($lineplot);
// Affichage
$graph->Stroke();
?>
</div>
<div class="footer"> <strong>Pages réaliser pour le projet eti'poules</strong> </div>
</div>
</body>
</html> |
merci d'avance de votre aide