Moin, ich brauch ma wieder eure Hilfe.
ich möchte x bilder mit text darunter (am besten in 1 div verpackt)
mit javascript von rechts nach links durch den browser jagen.
habt ihr n paat infos?
im moment habe ich zwar ein newsscipt (siehe post) aber ich kann keine 2 zeiler durchjagen.
gruss drag
p.s. der quellcode beim dv auslesen hatte vorher nur n text
mit divs klappts nicht, zumindest hatte ich die falschen einstellungen im style.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Page-Enter" content="blendTrans(Duration=2.0)">
<title>Spezialitäten</title>
</head>
<body bgcolor="#700101">
<script type="text/javascript">
<!--
/* * * * * * * * * * * * * * * * D I E V A R I A B L E N * * * * * * * * * * * * * * * * * */
tNews=new Array();
//°°°°°°°°°°Die News
<?
$x=0;
$result = mysql_query("SELECT * FROM eis") OR die(mysql_error());
while ($row = mysql_fetch_assoc($result)) {
echo "tNews[$x]='<a href=\"images/spezialitaten/".$row["pic"]."\"><img src=\"images/spezialitaten/".$row["pic"]."\" border=\"0\" /></a>
".$row["name"]."'; \n";
$x++;
}
?>
//°°°°°°°°°°Delimiter zwischen den einzelnen News
tDelimiter =' ';
//°°°°°°°°°°Interval in ms
tInterval =10;
//°°°°°°°°°°Stop bei mouseover?true:false
tStop =true;
//°°°°°°°°°°Falls Leeraum zwischen News...hier Wert erhoehen...minimum:1
tRepeat =2;
//°°°°°°°°°°Rahmen
tBorder ='0px solid #818181';
//°°°°°°°°°°Breite
tWidth =870;
//Abstand Rahmen->Inhalt (top+bottom)
tPadding =1;
//Das Aussehen per CSS anpassbar unter Verwendung des Selectors #ticker
/* * * * * * * * * * * * * * * * * * D E R T I C K E R * * * * * * * * * * * * * * * * * * * * * */
IE=document.all&&!window.opera;DOM=document.getElementById&&!IE;
if(DOM||IE)
{
var tGo;tPos=0;tStop=tStop?'onmouseover="clearInterval(tGo)"'+
'onmouseout="tGo=setInterval(\'DM_ticken()\','+tInterval+')"':'';
tTxt=tDelimiter+tNews.join(tDelimiter);tNews=tTxt;
for(i=1;i<tRepeat;++i){tNews+=tTxt;}document.write
('<div style="overflow:hidden;border:'+tBorder+';width:'+
tWidth+'px;padding:'+tPadding+'px 0px '+tPadding+'px 0px;">'+
'<nobr><span id="ticker"style="position:relative;"'+tStop+'>'+
tNews+'</span></nobr></div>');
tObj=IE?document.all.ticker:document.getElementById('ticker');
function DM_ticken(){tOffset=tObj.offsetWidth/tRepeat;
if(Math.abs(tPos)>tOffset){tPos=0;}tObj.style.left=tPos;tPos--;}
tGo=setInterval('DM_ticken()',tInterval);
}
//-->
</script>
</body>
</html>
Alles anzeigen
[/quote]