<script language="Javascript">
<!--
var text = "voici une animation avec des majuscules" //votre texte ici
var speed = 200 //vitesse de l'animation
var x = 0
function bb() {
var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("bb()",speed)
}
bb();
//Merci de ne pas effacer ces lignes
//D'autres script,applet,images sur webgraf.Com
//Mathieu Gros, webmaster@webgraf.Com
//-->
</script>
|