- <html>
- <head>
- <title>votre titre</title>
- </head>
- <script>
- var titletext=" votre titre ici "
- var thetext=""
- var started=false
- var step=0
- var times=1
-
- function welcometext()
- {
- times--
- if (times==0)
- {
- if (started==false)
- {
- started = true;
- document.title = titletext;
- setTimeout("anim()",1);
- }
- thetext = titletext;
- }
- }
-
- function showstatustext(txt)
- {
- thetext = txt;
- setTimeout("welcometext()",4000)
- times++
- }
-
- function anim()
- {
- step++
- if (step==7) {step=1}
- if (step==1) {document.title='!___'+thetext+'___!'}
- if (step==2) {document.title='_!__'+thetext+'__!_'}
- if (step==3) {document.title='!_!_'+thetext+'_!_!'}
- if (step==4) {document.title='_!_!'+thetext+'!_!_'}
- if (step==5) {document.title='__!_'+thetext+'_!__'}
- if (step==6) {document.title='___!'+thetext+'!___'}
- setTimeout("anim()",200);
- }
-
- if (document.title)
- window.onload=onload=welcometext
- </script><body>
- vous voyer votre titre</body>
- </html>
<html>
<head>
<title>votre titre</title>
</head>
<script>
var titletext=" votre titre ici "
var thetext=""
var started=false
var step=0
var times=1
function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
document.title = titletext;
setTimeout("anim()",1);
}
thetext = titletext;
}
}
function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}
function anim()
{
step++
if (step==7) {step=1}
if (step==1) {document.title='!___'+thetext+'___!'}
if (step==2) {document.title='_!__'+thetext+'__!_'}
if (step==3) {document.title='!_!_'+thetext+'_!_!'}
if (step==4) {document.title='_!_!'+thetext+'!_!_'}
if (step==5) {document.title='__!_'+thetext+'_!__'}
if (step==6) {document.title='___!'+thetext+'!___'}
setTimeout("anim()",200);
}
if (document.title)
window.onload=onload=welcometext
</script><body>
vous voyer votre titre</body>
</html>