Il faut chercher dans google...
Bon voila le code
CODE :
<script language="JavaScript1.2">
// personnalisez ici ***********
var marqueewidth=150
var marqueeheight=40
var speed=2
var marqueecontents=´mettez votre super message <b>ici</b>, il n y a pas de limite, alors place a l imagination´
//*****************************
var currentspeed=speed
if (document.all) document.write(´<marquee onmouseover="stop()" onmouseout="start()" direction="up" scrollAmount=´+currentspeed+´ style="width: ´+marqueewidth+´px; height:
´+marqueeheight+´px">´+marqueecontents+´</marquee>
´)
function start()
{
currentspeed=speed
}
function stop()
{
currentspeed=0
}
</script>