Is there anyone ever used a free vertical scroller that is compatable with both Firefox and IE?
If so is it possible to share it here as an answer?
Thanks
David
Is there anyone ever used a free vertical scroller that is compatable with both Firefox and IE?
If so is it possible to share it here as an answer?
Thanks
David
What do you mean by scroller? You can try one of the many plugins of JQuery. There are many other javascript frameworks that could probably help you (Prototype, mooTools).
To do this you nest two DIVs:
<div style='position:realtive;overflow:hidden'>
<div id='news' style='position:absolute'>your text</div>
</div>
Then you reposition the inner DIV.
I use Prototype/Scriptaculous: but you can do this any way you want.
new Effect.Move('news',{mode:'absolute',x:(some value in pixels, or you can use y: for vertical),duration:(some value in seonds)}