|
It's very easy to do with javascript...
Try creating a loop...
Like this...
function scrolling(){
window.scroll+=speed;
}
settimeOut("scrolling"),100);
An speed will be the lines to scroll...
so declare: var speed;
at the top of the script...
and that will do... If you want to change the scrolling speed you can add "speed=(your speed)" to any event... and set speed=0 to stop scrolling...
I did an autoscrolling text to show the top 10 posts on a forum at the home page and stuff like that...
Hope I have help... You can email me for a complete source code... :P
|