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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Bannière bas </title>
<script type="text/javascript">
var pos=-101
function launch(){
var banniere=document.getElementById('banniere')
var moveup=setInterval(function(){
if(pos==0){clearInterval(moveup)}
else{banniere.style.bottom=pos;
pos++;}
},10)
setTimeout(function(){
var movedown=setInterval(function(){
if(pos==-102){clearInterval(movedown)}
else{banniere.style.bottom=pos;
pos--;}
},10)
},5000)
}
</script>
</head>
<body style="overflow:hidden;margin:0px;">
<input type="button" onclick="launch()" value="go" />
<div id="banniere" style="position:absolute; bottom:-101px;left:0px; width:100%;background-color:red;color:white; font-size:30px;text-align:center;height:100px;width:100%;">bannière</div>
</body>
</html> |