HOME   TIP-TOP    LINKOVI    ARHIVE   YU-STRANE

 

Detect Browser Example



1.JAVA SKRIPTE ZA VAS I  53 PRIMERA ZA UREDJENJE VASE STRANE(*.ZIP DATEN)

2.VOLITE LIJEPE ZENE?30 LEPOTICA CEKA NA VAS(*.ZIP DATEN)

 1.DOWNLOAD Klikni Ovde Za Skripte

2. DOWNLOAD Klikni za Lepotice

http://www.vaso-pavlicic.de
LINKOVI MIJENJAJU BOJU
<html><title>Dancing Links</title>
<META name="description" content="Dieses Script ändert die Linkfarben alle paar Sekunden">
<META name="keywords" content="link color rotation">
<body bgcolor="#87CEFA">
<table width=486><tr><td><b><a HREF="#">Dancing Links Script</b><br>
<hr noshade width=486 align=left>
</td></tr></table>
<!-- Cut-N-Paste JavaScript from ISN Toolbox 
     Copyright 1996, Infohiway, Inc.  Restricted use is hereby
     granted (commercial and personal OK) so long as this code
     is not *directly* sold and the copyright notice is buried
     somewhere deep in your HTML document.  A link to our site
     http://www.infohiway.com is always appreciated of course,
     but is absolutely and positively not necessary. ;-)   -->
<script language="JavaScript">
<!--
function initArray() {
 for (var i = 0; i < initArray.arguments.length; i++) {
  this[i] = initArray.arguments[i];
 }
 this.length = initArray.arguments.length;
}
// you may fill this colors array with your colors.
// the script will rotate the links through these colors
var colors = new initArray(
 "#008000",
 "green",
 "#C6C68C",
 "green",
 "blue",
 "purple",
 "black",
 "red");
pause_time = .5; // in seconds
link = 0; // starting color index (in colors array) for unvisited links
vlink = 4; // starting color index (in colors array) for visited links
 
function linkDance() {
 link = (link+1)%colors.length;
 vlink = (vlink+1)%colors.length;
 document.linkColor = colors[link];
 document.vlinkColor = colors[vlink];
 setTimeout("linkDance();",pause_time*1000);
}
linkDance();
// -->
</script>
<table width=486><tr><td>
Vielleicht l&auml;uft dieses Script nicht mit allen Browsern, aber es schadet auch nichts.<br><br>
Alle Links der Seite mit diesem Script &auml;ndern regelm&auml;&szlig;ig ihre Farbe.<br><br>
<hr noshade width=486 align=left><br>
Musterlinks:<br>
<b><a href="inhalt.htm">home</a></b><br>
<big><a href="JavaScript:history.back()">zur&uuml;ck</a></big><br>
<a href="#">nix</a>
</td></tr></table>
</body></html>

Musterlinks:

HOME

LINKOVI

YU-STRANE

2.

STATUSTICKER(1)

<html>
<head>
<title>1. abysmal pigasus site of JavaScript, DHTML, ...</title>
<meta name="description" content="1. pigasus site of JavaScript, DHTML, ...">
<script type="text/javascript" language="JavaScript" >
<!--
var curmes = 0
var a = 0
var counter = 0
var message = new Array()
message[0] = "Hier steht Ihr Text ..."
message[1] = "... und hier noch einer ..."
message[2] = "... soviele Worte ..."
message[3] = "... in der Statuszeile ..."
message[4] = "... muss das denn sein?"
var temp = ""
function typew()
{
a = a + 1
check()
window.status = message[curmes].substring(0, a)
if(a == message[curmes].length + 5)
{
curmes = curmes + 1
a = 0
}
if(curmes > 4)
{
curmes = 0
}
counter = setTimeout("typew()", 140)
}
function check()
{
if(a <= message[curmes].length)
{
if(message[curmes].substring(a, a + 1) == "")
{
a = a + 1
check()
}
}
}
// -->
</script>
</head>
<body onload=typew()>
</body>
</html>

3.

MARSIRAJUCI TEXT

<title>Lauftext</title>
</head>
<p><font color="#400000" size="3"><strong>
<marquee>zdravo zdravo zdravo</marquee>
</strong></font></p>
</html>

4.

STARUSROLLER SA DATUMOM

<script LANGUAGE="JavaScript">
<!-- Begin
var osd = " "
osd +="Dies ist wieder ein Statuszeilentext mit JavaScript ... ";
osd +="Zuerst das Datum, dann die Zeit und auch Text ... ";
osd +="Und es läuft wieder und wieder und wieder ... ";
osd +="[f.i.p.s.] the.site ";
osd +=" ";
var timer;
var msg = "";
function scrollMaster () {
msg = customDateSpring(new Date())
clearTimeout(timer)
msg += " " + showtime() + " " + osd
for (var i= 0; i < 100; i++){
msg = " " + msg;
}
scrollMe()
}
function scrollMe(){
window.status = msg;
msg = msg.substring(1, msg.length) + msg.substring(0,1);
timer = setTimeout("scrollMe()", 200);
}
function showtime (){
var now = new Date();
var hours= now.getHours();
var minutes= now.getMinutes();
var seconds= now.getSeconds();
var months= now.getMonth();
var dates= now.getDate();
var years= now.getYear();
var timeValue = ""
timeValue += ((months >9) ? "" : " ")
timeValue += ((dates >9) ? "" : " ")
timeValue = ( months +1)
timeValue +="/"+ dates
timeValue +="/"+ years
var ap="am"
if (hours == 12) {
ap = "pm"
}
if (hours == 0) {
hours = 12
}
if(hours >= 13){
hours -= 12;
ap="pm"
}
var timeValue2 = " " + hours
timeValue2 += ((minutes < 10) ? ":0":":") + minutes + " " + ap
return timeValue2;
}
function MakeArray(n) {
this.length = n
return this
}
monthNames = new MakeArray(12)
monthNames[1] = "Jaenner"
monthNames[2] = "Februar"
monthNames[3] = "Maerz"
monthNames[4] = "April"
monthNames[5] = "Mai"
monthNames[6] = "June"
monthNames[7] = "Juli"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "Oktober"
monthNames[11] = "November"
monthNames[12] = "Dezember"
daysNames = new MakeArray(7)
daysNames[1] = "Sonntag"
daysNames[2] = "Montag"
daysNames[3] = "Dienstag"
daysNames[4] = "Mittwoch"
daysNames[5] = "Donnerstag"
daysNames[6] = "Freitag"
daysNames[7] = "Samstag"
function customDateSpring(oneDate) {
var theDay = daysNames[oneDate.getDay() +1]
var theDate =oneDate.getDate()
var theMonth = monthNames[oneDate.getMonth() +1]
var dayth="th"
if ((theDate == 1) || (theDate == 21) || (theDate == 31)) {
dayth=".";
}
if ((theDate == 2) || (theDate ==22)) {
dayth=".";
}
if ((theDate== 3) || (theDate == 23)) {
dayth=".";
}
return theDay + ", " + theMonth + " " + theDate + dayth + ","
}
scrollMaster();
// End -->
</script>


RealTracker Free