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
|
[head]
<style type="text/css">
#un {overflow:hidden;border:yellow solid 2px;margin-top:50px;margin-right:auto;margin-left:auto;width:100px;height:200px}
#deux {text-align:center;position:relative;top:200px}
</style>
<script type="text/javascript">
var pos=200;
function go(){
if(pos > -250){
document.getElementById('deux').style.top=pos+"px";
pos--;
}
else{
pos=200;
};
timer=setTimeout("go()",50)
}
</script>
</head>
<body onload="go()">
</div>
<div style="text-align:left">
<div id="un" onmouseover="clearTimeout(timer)" onmouseout="go()" style="width: 165px; height: 94px">
<div id="deux">
<font color="#000080"face="Arial" size="1">
<% Response.write ("texte")%></font>
</div>
</div>
</div> |
Partager