Hallo,
Wollte einen Ticker machen als eine Art begrüßungs Nachricht der unter meinen Header läuft...
Mein Problem ist, geht dies auch ohne Input Feld?!
Da das inputfeld (auch mit background image) ein dicken rand unten hat, versaut dies das design....
nuja....
wie stell ichs an!?
hilfe wäre net :x
MfG
Wollte einen Ticker machen als eine Art begrüßungs Nachricht der unter meinen Header läuft...
Mein Problem ist, geht dies auch ohne Input Feld?!
Da das inputfeld (auch mit background image) ein dicken rand unten hat, versaut dies das design....
HTML:
<html>
<head>
<script type="text/javascript" language="javascript" src="data/scripts.js"></script>
<SCRIPT LANGUAGE="JavaScript">
var scrlStr ="Testing :)"
var width = 450;
var strLen = scrlStr.length;
var pos = 1 - width;
function scroll(){
var scroll = "";
pos++;
if (pos == strLen)
pos = 1 - width;
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++)
scroll = scroll + " ";
scroll = scroll + scrlStr.substring(0, width - i + 1);
}
else
scroll = scroll + scrlStr.substring(pos, pos + width);
document.scrollMsg.message.value = scroll;
setTimeout("scroll()",20);
}
</SCRIPT>
</head>
<body onLoad="scroll(); return true">
<div class="header"></div>
<form name="scrollMsg" class="news">
<input style="background-image:url(img/info_leiste.jpg)" style="width:1280px" style="height:25px" type="text" name="message" value="Anfangstext">
</form>
</body>
</html>
nuja....
wie stell ichs an!?
hilfe wäre net :x
MfG