// CREDITS: // Right-To-Left Scroller with smooth fade-effect // By Urs Dudli and Peter Gehrig // Copyright (c) 2003 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.com // 9/16/2003 // IMPORTANT: // If you add this script to a script-library or script-archive // you have to add a highly visible link to // http://www.24fun.com on the webpage // where this script will be featured ///////////////////////////////////////////////////////////////////// // Unterhalb dieser zwei Linien beginnt die Editierzone // Bestimmen Sie die Eigenschaften der Text Animation ///////////////////////////////////////////////////////////////////// // Tragen Sie Ihre Nachrichten ein. // Jede Nachricht muss durch Anführungs- und Schlusszeichen eingerahmt werden // Sie können soviele Nachrichten eingeben, wie Sie wollen var text=new Array() text[0]="Die neuesten Mitglieder auf Quickflirt.de...." text[1]="misssally1, w(28) aus Bamberg. Hier gehts zum Profil von misssally1" text[2]="Jamesjahn1, m(59) aus Heilbronn. Hier gehts zum Profil von Jamesjahn1" text[3]="scoobysnacks, m(41) aus Frankfurt am Main. Hier gehts zum Profil von scoobysnacks" text[4]="LosDosMalSein, m(30) aus Neuss. Hier gehts zum Profil von LosDosMalSein" text[5]="shara26, w(26) aus Celle. Hier gehts zum Profil von shara26" text[6]="MFToll, m(36) aus Kassel. Hier gehts zum Profil von MFToll" text[7]="keetdesmond, w(23) aus Aalen. Hier gehts zum Profil von keetdesmond" text[8]="cuddle, m(54) aus Hamburg. Hier gehts zum Profil von cuddle" text[9]="rosy44ur, w(24) aus Hamburg. Hier gehts zum Profil von rosy44ur" text[10]="tina24, w(24) aus Berlin. Hier gehts zum Profil von tina24" text[11]="ebabyluv1, w(23) aus Bamberg. Hier gehts zum Profil von ebabyluv1" text[12]="hassanababy, w(25) aus Berlin. Hier gehts zum Profil von hassanababy" text[13]="Lion0408, m(47) aus Goeppingen. Hier gehts zum Profil von Lion0408" text[14]="jenifer4uu, w(24) aus Aalen. Hier gehts zum Profil von jenifer4uu" text[15]="highsider28, m(30) aus Stuttgart. Hier gehts zum Profil von highsider28" text[16]="babym24, w(25) aus . Hier gehts zum Profil von babym24" text[17]="maddin34, m(34) aus Würzburg. Hier gehts zum Profil von maddin34" text[18]="mrsjully, w(40) aus Aalen. Hier gehts zum Profil von mrsjully" text[19]="blackbery, m(43) aus Dresden. Hier gehts zum Profil von blackbery" text[20]="holahombre, m(39) aus Ulm. Hier gehts zum Profil von holahombre" // Jeder Ihrer Nachrichten muss ein Link zugeordnet werden // Für Nachrichten, die nicht verlinkt werden sollen, // tragen Sie ein "#" anstelle eines URLS's ein (siehe Beispiel Mitte) var textlink=new Array() textlink[0]="" textlink[1]="profil.php?id=9417" textlink[2]="profil.php?id=9416" textlink[3]="profil.php?id=9415" textlink[4]="profil.php?id=9414" textlink[5]="profil.php?id=9413" textlink[6]="profil.php?id=9411" textlink[7]="profil.php?id=9410" textlink[8]="profil.php?id=9408" textlink[9]="profil.php?id=9406" textlink[10]="profil.php?id=9404" textlink[11]="profil.php?id=9403" textlink[12]="profil.php?id=9400" textlink[13]="profil.php?id=9399" textlink[14]="profil.php?id=9397" textlink[15]="profil.php?id=9396" textlink[16]="profil.php?id=9395" textlink[17]="profil.php?id=9394" textlink[18]="profil.php?id=9392" textlink[19]="profil.php?id=9391" textlink[20]="profil.php?id=9390" // Jedem Ihrer Links muss ein Zielfenster zugeordnet werden // Mögliche Werte sind "_blank" (öffnet neues Fenster), // "_top" oder "_parent" (füllt das ganze Browser-Fenster) // oder "_self" (lädt die Seite ins gleiche Frame wie der Link) // Um ein bestimmtes Frame als Zielfenster zu nutzen, tragen Sie einfach den Namen des // entsprechenden Frames ein (z.B. "main") var texttarget=new Array() texttarget[0]="_top" texttarget[1]="content_frame" texttarget[2]="content_frame" texttarget[3]="content_frame" texttarget[4]="content_frame" texttarget[5]="content_frame" texttarget[6]="content_frame" texttarget[7]="content_frame" texttarget[8]="content_frame" texttarget[9]="content_frame" texttarget[10]="content_frame" texttarget[11]="content_frame" texttarget[12]="content_frame" texttarget[13]="content_frame" texttarget[14]="content_frame" texttarget[15]="content_frame" texttarget[16]="content_frame" texttarget[17]="content_frame" texttarget[18]="content_frame" texttarget[19]="content_frame" texttarget[20]="content_frame" // Bestimmen Sie die Schrift var textfont="Verdana" // Bestimmen Sie zwei Schriftfarben var textfontcoloraa="#000000" var textfontcolorbb="#000000" // Bestimmen Sie die Schrift für den Rollover-Effekt var textfontcolorrollover="#000000" // Bestimmen Sie die Schriftgrösse (CSS-Werte) var textfontsize=8 // Bestimmen Sie die Hintergrundfarbe var textbgcolor="" // Legen Sie fest, ob die Schrift "normal" oder "bold" (fett) sein soll var textweight="bold" // Legen Sie fest, ob die Schrift "normal" oder "italic" (kursiv) sein soll var textitalic="normal" // Bestimmen Sie Breite und Höhe des Scrollers (Pixels) var textwidth=600 var textheight=26 // Bestimmen Sie die Farbe des Randes var textbordercolor="#FDCF15" // Bestimmen Sie die Dicke des Randes (Pixel) var textborder=0 // Bestimmen Sie die Breite des stufenlosen Ein- und Ausblendeffekts (Pixel) var translayerszone=120 ///////////////////////////////////////////////////////////////////// // Hier endet die Editierzone // Bitte ändern Sie den nachfolgenden Code nur, // wenn Sie ein geübter JavaScripter sind. ///////////////////////////////////////////////////////////////////// var textpause=0 var textitalicA="" var textitalicB="" var textweightA="" var textweightB="" var textdecoration="none" var textalignonly="center" var textfontsizeHTML=3 var i_text=0 var textcontent="" var thisspan="" var content="" var contentbg="" var toggle=1 var timer var scrollready=true var tablewidth var tableheight var textfontcolortoggle=new Array() var toggle=1 var step=2; var content var padding=3 var textcontentheight var textcontentwidth var translayerswidth=4 var translayersmax=Math.floor(translayerszone/translayerswidth) var translayersleftpos=0 var translayersopacity=100 var translayersfactor=100/translayersmax var translayerswidthall=translayersmax*translayerswidth var ie=document.all?1:0 var ns6=document.getElementById&&!document.all?1:0 var ns4=document.layers?1:0 var browserinfos=navigator.userAgent var opera=browserinfos.match(/Opera/) getcontent() function getcontent() { if (ie || ns6) { tablewidth=textwidth-2*textborder tableheight=textheight-2*textborder content="
" for (i=0;i" content+=text[i] content+="       " } content+="
" } else { tablewidth=textwidth-2*textborder tableheight=textheight-2*textborder contentbg="
hi
" content="
" for (i=0;i" content+=text[i] content+="----------" } content+="
" } } if (ns4) { toggle=1 document.write('
'); document.write(''); document.write('
') document.write(''+contentbg+'') document.write('loading'); } if (ie || ns6) { document.write('
'); document.write('
'); document.write('
') if (ns6) { var tablewidth=textwidth-2*textborder var tableheight=textheight-2*textborder } else { var tablewidth=textwidth var tableheight=textheight } document.write('') if (ns6) { document.write('') } } function doscroll(){ if (scrollready) { if(ns4){ document.ticker.left+=-step; if (document.ticker.left