|
<html>
<head>
</head>
<body bgcolor="#FFFFFF">
<script>
// CREDITS:
// Simple DHTML-ticker with last-letter-animation by Urs Dudli and Peter
Gehrig
// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains
as is.
// Additional scripts can be found at http://www.24fun.com.
// info@24fun.ch
// 7/31/2000
// IMPORTANT:
// If you add this script to a script-library or a script-archive
// you have to insert a link to http://www.24fun.com right into the webpage
where the script
// will be displayed.
// CONFIGURATION:
// Go to http://www.24fun.com, open category 'text' and download the ZIP-file
of this script
// containing the the script-file with step-by-step instructions for easy
configuration.
// Configure your messages. You may add as many messages
as you like.
var i_mes=0
var message=new Array()
var messagelink=new Array()
var linktarget=new Array()
var fnt=new Array()
var fntsize=new Array()
var fntcolor=new Array()
var fntcolorlastletter=new Array()
message[i_mes]="Massage One-This DHTML-ticker with
cool last-letter-animation requires no absolute positioning. What does
this mean?"
messagelink[i_mes]="http://www.google.com"
linktarget[i_mes]="_blank"
fnt[i_mes]="Verdana"
fntsize[i_mes]="10"
fntcolor[i_mes]="FF0000"
fntcolorlastletter[i_mes]="880000"
i_mes++
message[i_mes]="Massage 2-This means you may put
the script into ordinary tablecells as shown in this sample."
messagelink[i_mes]="http://www.yahoo.com"
linktarget[i_mes]="_blank"
fnt[i_mes]="Comic sans MS"
fntsize[i_mes]="12"
fntcolor[i_mes]="0000FF"
fntcolorlastletter[i_mes]="000088"
i_mes++
message[i_mes]="Massage - 3Each message can be linked
to a different URL. Easy configuration of messages, tickersize, font,
fontcolor, fontfamily, fontsize, and more. So get it now for free!"
messagelink[i_mes]="http://www.altavista.com"
linktarget[i_mes]="_top"
fnt[i_mes]="Times"
fntsize[i_mes]="10"
fntcolor[i_mes]="00AA00"
fntcolorlastletter[i_mes]="006600"
i_mes++
// standstill between the messages (microseconds)
var standstill=2000
// width of the ticker
var tickerwidth=300
// height of the ticker
var tickerheight=80
</script>
<script src="textickerrelative.js"></script>
</body>
</html>
:תואבה תורושב JS ה ץבוקב השעי םוקימ יוניש
if (document.all) {
document.write('<span ID="tickerroof" style="position:relative;width:'+tickerwidth+'px;height:'+tickerheight+'px;">')
document.write('<span ID="ticker" style="position:absolute;top:0px;left:400px"></span>')
document.write('</span>')
}
if (document.layers) {
document.write('<ilayer name="tickerroof" height="'+tickerheight+'"
width="'+tickerwidth+'">')
document.write('<layer name="ticker" top=0 left=0"></layer>')
document.write('</ilayer>')
document.close()
}
window.onload=initiateticker
window.onresize=initiateticker
|