Today im going to show you how to make a scroller using HTML, this can be used on your website or myspace and can be customised to include all sorts of content.
Below is the basic code for the scroller:
Simply put the html you want to scroll in the space specified in the code.
What to put there?
If you wish to put one line after another there to form for example a list simply type the item followed by:
<p />
So for example your final code would be:
You can also use html to format your text so for example put <b> </b> around your text to make it bold.
You can also customise your scroller a bit.
To change the size substitute 300px for the height of your choice and 200px for the width of your choice.
To change the speed simply change the scrollamount="3" value.
Finally to change the direction change direction="up" to direction="down"
Enjoy!
Note: Absolutely no reproduction is permitted without my express authorization.
Edit: The Javascript to start and stop this scroller on mouse over is available below (or click here)
Below is the basic code for the scroller:
Code:
<div id="scroller" height="300px" width="200px">
<marquee ID="scroll2" scrollamount="3" direction="up" height="350">
<!--Put the stuff that you want to scroll between here-->
Put your stuff here and here
<!--and here-->
</marquee>
</div>
What to put there?
If you wish to put one line after another there to form for example a list simply type the item followed by:
<p />
So for example your final code would be:
Code:
<div id="scroller" height="300px" width="200px">
<marquee ID="scroll2" scrollamount="3" direction="up" height="350">
<!--Put the stuff that you want to scroll between here-->
Item 1
<p />
Item 2
<p />
Item 3
<p />
<!--and here-->
</marquee>
</div>
You can also customise your scroller a bit.
To change the size substitute 300px for the height of your choice and 200px for the width of your choice.
To change the speed simply change the scrollamount="3" value.
Finally to change the direction change direction="up" to direction="down"
Enjoy!
Note: Absolutely no reproduction is permitted without my express authorization.
Edit: The Javascript to start and stop this scroller on mouse over is available below (or click here)