techway Posted July 28, 2004 Report Share Posted July 28, 2004 Hallo XTler hat einer von euch schon rausgefunden wie man die Scroll-Geschwindigkeit von der News-Feed-Box einstellen kann? ich finde dass es zu schnell scrollt... diese Contribution steht im Downloadbereich zur Verf?gung... danke im voraus MFG Steffen Link to comment Share on other sites More sharing options...
capri Posted July 28, 2004 Report Share Posted July 28, 2004 In der Ticker.php Zeile 2041 $content_string .="<marquee behavior= \"scroll\" align=\"middle\" direction=\"up\" height=\"160\" scrollamount= \"2\" scrolldelay= \"20\" onmouseover='this.stop()' onmouseout='this.start()'>"; bei Scrolldelay den Wert ver?ndern. Link to comment Share on other sites More sharing options...
techway Posted July 29, 2004 Author Report Share Posted July 29, 2004 Danke sch?n :i: hat super geklappt Link to comment Share on other sites More sharing options...
Rodent Posted August 4, 2004 Report Share Posted August 4, 2004 hoi, wie kann ich das gescrolle komplett ausschalten, und den inhalt statisch darstellen, sodass das auch mit anderen Browsern gut klappt? danke lg alex Link to comment Share on other sites More sharing options...
capri Posted August 4, 2004 Report Share Posted August 4, 2004 if ($ie_marquee) { $content_string .="<marquee behavior= \"scroll\" align=\"middle\" direction=\"up\" height=\"160\" scrollamount= \"2\" scrolldelay= \"20\" onmouseover='this.stop()' onmouseout='this.start()'>"; foreach ($rss->items as $item) { $href = $item['link']; $title = $item['title']; $content_string .="<li><a href=$href target=\"_new\">$title</a></li><br><hr>"; } $content_string .="</marquee>"; } else { $content_string .=foreach ($rss->items as $item) { $href = $item['link']; $title = $item['title']; $content_string .="<li><a href=$href target=\"_new\">$title</a></li><br><hr>"; } } K?nnte funktionieren, habe es noch nicht ausprobiert, ist halt ein Schnellschluss. Wenne s funktioniert, dann scrollt er beim IE bei jeden anderen Browser wird dann statisch angezeigt. Vielleicht mach ich noch eine L?sung, bei der im IE mit Marque gescrollt wird, bei anderen Browsern per Java Script, und wenn java ausgeschaltet als statische Anzeige, das Spript w?rde halt dadurch noch gr??er Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.