Open Source "Crawler"
gLan
- javascript
0 gLan
Hallo,
ich habe so ein wundertolles Open-Source Script gefunden und wollte es verwenden (auch wenn ich das eigentlich ungern tu).
Folgendes verwende ich: http://www.dynamicdrive.com/dynamicindex2/crawler/index.htm davon hab ich den Image-Crawler...
Der funktioniert bei mir aber leider nur, wenn ich MAXIMAL 10 Bilder darin habe...
Also habe ich 3 Fragen:
1. Kenn jemand das Script und hat das selbe Problem?
2. Weiß jemand wie man das beheben kann und ob überhaupt?
3. Kennt jemand alternative Scripts, die das selbe können?
Hier der Code:
<div class="marquee" id="mycrawler2">
<img src="./bilder/logos/maler_grau.png" height="75px" onMouseOver="sBild(this, 'maler.png');Tip('Maler');" onMouseOut="sBild(this, 'maler_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/sanität_grau.png" height="75px" onMouseOver="sBild(this, 'sanität.png');Tip('Sanitäranlagenbau');" onMouseOut="sBild(this, 'sanität_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/bau_grau.png" height="75px" onMouseOver="sBild(this, 'bau.png');Tip('Bau');" onMouseOut="sBild(this, 'bau_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/schmied_grau.png" height="75px" onMouseOver="sBild(this, 'schmied.png');Tip('Schmied');" onMouseOut="sBild(this, 'schmied_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/tisch_grau.png" height="75px" onMouseOver="sBild(this, 'tisch.png');Tip('Tischler');" onMouseOut="sBild(this, 'tisch_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/schloss_grau.png" height="75px" onMouseOver="sBild(this, 'schloss.png');Tip('Schlosser');" onMouseOut="sBild(this, 'schloss_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/holz2_grau.png" height="75px" onMouseOver="sBild(this, 'holz2.png');Tip('Holzbildhauer');" onMouseOut="sBild(this, 'holz2_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/holz_grau.png" height="75px" onMouseOver="sBild(this, 'holz.png');Tip('Steinmetz');" onMouseOut="sBild(this, 'holz_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/fris_grau.png" height="75px" onMouseOver="sBild(this, 'fris.png');Tip('Fiseur');" onMouseOut="sBild(this, 'fris_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/glas_grau.png" height="75px" onMouseOver="sBild(this, 'glas.png');Tip('Glaser');" onMouseOut="sBild(this, 'glas_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/fleisch_grau.png" height="75px" onMouseOver="sBild(this, 'fleisch.png');Tip('Fleischer');" onMouseOut="sBild(this, 'fleisch_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
<img src="./bilder/logos/dach_grau.png" height="75px" onMouseOver="sBild(this, 'dach.png');Tip('Dachdecker');" onMouseOut="sBild(this, 'dach_grau.png');UnTip();" style="cursor:pointer;" onClick="window.location.href='index.php?s=inn';">
</div>
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler2',
style: {
'padding': '2px',
'width': '100%',
'height': '180px'
},
inc: 5, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 2,
neutral: 150,
noAddedSpace: false,
savedirection: false
});
</script>
Danke im Voraus
gLan
Hallo,
ich habe einen Fehler meinerseits gefunden: Eines der Bilder gab es nicht.
Aber jetzt gibt es ein weiteres Problem: Das ganze funktioniert im FF (allen) nicht, aber es hat schon einmal funktioniert...
gLan