1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<html>
<head>
<script language="JavaScript1.2">
var position=0 ;
var texte="<a href='http//www.google.fr' target='_blank'>AAA</a> - BBB - CCC - DDD - EEE - FFF - GGG - HHH -" ;
function defiler() {
position++ ;
if (position>=texte.length) position = 0 ;
document.getElementById("txt").innerHTML=texte.substring(position)+ " "+texte+" "+texte;
setTimeout("defiler()",150) ;
}
</script>
</head>
<BODY onLoad="defiler()">
<table width="300px" border="0" cellspacing="0" cellpadding="0" style="table-layout:fixed">
<tr>
<td width="300px"><nobr><div id="txt"></div></nobr></td>
</tr>
</table>
</body>
</html> |
Partager