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 110 111
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
<head>
<title>PARLOPHONE</title>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<!--Bouton personnalisé-->
<style type="text/css">
p{
font-family: Arial,sans-serif;
font-size: 1.4em;
width: 800px;
height: 30px;
padding-top: 7px; /*permet le centrage vertical*/
text-align: center;
color: #000;
background: #444;
background: linear-gradient( #555, #2C2C2C);
border-radius: 8px;
text-shadow: 0px 1px 0px rgba( 255, 255, 255, 0.2);
box-shadow: 0 0 5px rgba( 0, 0, 0, 0.5),
0 -1px 0 rgba( 255, 255, 255, 0.4);
}
p:hover{
color: #222;
background: #555;
background: linear-gradient( #777, #333);
cursor: url(Main1.cur), auto;
}
p:active{
color: #000;
background: #444;
background: linear-gradient( #555, #2C2C2C);
box-shadow: 1px 1px 10px black inset,
0 1px 0 rgba( 255, 255, 255, 0.4);
}
</style>
<!--Bande noire avec heure et date-->
<style type="text/css">
#banderole {
background-color:black;
min-width:720px;
}
#banderole .heure {
color:rgb(0,0,255);
font-size:32px;
float:left;
margin-left: 10;
}
#banderole .date {
color:rgb(0,0,255);
font-size:32px;
float:right;
margin-right: 10;
}
#banderole .titre {
color:rgb(255,255,255);
text-align:center;
}
</style>
<!--Position des lecteurs avec Div-->
<style type="text/css">
.bloc-fixe {
position:fixed;
border:solid 10px;
border-color: #C0C0C0;
box-shadow: 6px 6px 6px black;
width:800px;
height:505px;
top:50px;
left:center;
bottom:10px;
}
.bloc-variable {
position:relative;
border:outset 10px;
border-color: #C0C0C0;
box-shadow: 6px 6px 6px black;
width:800px;
height:505px;
top:50px;
left:center;
bottom:10px;
}
.btn_taille_egale{
width:830px;
}
</style>
</head>
<BODY BACKGROUND="0102.jpg" marginwidth="50" marginheight="50" topmargin="50" leftmargin="center">
<div id="banderole">
<h1 class="titre">PARLOPHONE BARRIERES AVANT</h1>
</div>
<center><div class="bloc-variable">
<IMG src="http://192.168.1.73:80/snapshot.cgi?user=admin&pwd=&t=" name="vdp" width="790" height="495"
border="5" id="refresh"></div>
<SCRIPT language="JavaScript" type="text/javascript">
var t = 25 // Interval en Secondes
image = "http://192.168.1.73:80/snapshot.cgi?user=admin&pwd=&t="
function Start() {
tmp = new Date();
tmp = "?"+tmp.getTime()
//document.images["vdp"].src = image+tmp
document.getElementById("refresh").src = image+tmp
setTimeout( Start, t*10)
}
Start();
</SCRIPT>
</BODY>
</html> |
Partager