// 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]="kurt0, m(57) aus Cottbus. Hier gehts zum Profil von kurt0" text[2]="visionary79, m(30) aus Nürnberg. Hier gehts zum Profil von visionary79" text[3]="EmilyButterfly, w(28) aus Lüneburg. Hier gehts zum Profil von EmilyButterfly" text[4]="wwwtomde, m(47) aus Bottrop. Hier gehts zum Profil von wwwtomde" text[5]="kuschelbear83, m(26) aus München. Hier gehts zum Profil von kuschelbear83" text[6]="Becks81, m(29) aus Kassel. Hier gehts zum Profil von Becks81" text[7]="missmellsa, w(22) aus Berlin. Hier gehts zum Profil von missmellsa" text[8]="blessing4u, w(24) aus Berlin. Hier gehts zum Profil von blessing4u" text[9]="kowalini, w(19) aus Aachen. Hier gehts zum Profil von kowalini" text[10]="rootout, m(28) aus Schwerin. Hier gehts zum Profil von rootout" text[11]="caribo, m(42) aus Dresden. Hier gehts zum Profil von caribo" text[12]="sandraok1, w(23) aus Aalen. Hier gehts zum Profil von sandraok1" text[13]="sandraok, w(23) aus Ahlen. Hier gehts zum Profil von sandraok" text[14]="loveth, w(23) aus Aalen. Hier gehts zum Profil von loveth" text[15]="EROSION, m(41) aus Oldenburg. Hier gehts zum Profil von EROSION" text[16]="honeybunny110, w(26) aus Regensburg. Hier gehts zum Profil von honeybunny110" text[17]="loveme, w(23) aus Hildesheim. Hier gehts zum Profil von loveme" text[18]="SchwesterTina, w(19) aus Berlin. Hier gehts zum Profil von SchwesterTina" text[19]="Hardi20, m(21) aus München. Hier gehts zum Profil von Hardi20" text[20]="FloNRW, m(25) aus Bochum. Hier gehts zum Profil von FloNRW" // 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=9275" textlink[2]="profil.php?id=9274" textlink[3]="profil.php?id=9273" textlink[4]="profil.php?id=9272" textlink[5]="profil.php?id=9271" textlink[6]="profil.php?id=9270" textlink[7]="profil.php?id=9269" textlink[8]="profil.php?id=9268" textlink[9]="profil.php?id=9267" textlink[10]="profil.php?id=9266" textlink[11]="profil.php?id=9265" textlink[12]="profil.php?id=9264" textlink[13]="profil.php?id=9263" textlink[14]="profil.php?id=9262" textlink[15]="profil.php?id=9261" textlink[16]="profil.php?id=9260" textlink[17]="profil.php?id=9259" textlink[18]="profil.php?id=9258" textlink[19]="profil.php?id=9257" textlink[20]="profil.php?id=9256" // 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