- A text coming from right to left continuously below is the demo of such marquee:
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="scroll" Direction="left">Your left scrolling marquee text goes here</marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
2. Continuous Scrolling Vertical Marquee Code.
- A text coming from bottom towards the top below is the demo of such marquee:
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="scroll" Direction="up">Your vertically scrolling marquee text goes here</marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
3. Slide In Marquee Code.
- A Text that slide just once from left to right and stops below is the demo of such marquee:
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="slide" Direction="left">Your marquee (slide-in) text goes here</marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
4. Bouncing Marquee Code.
- A Text that bounces from left to right continuously below is a demo of such marquee:
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="alternate" Direction="left">Your bouncing marquee text goes here</marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
5. Image Marquee Code.
- A moving image that moves from left towards the right continuously below is a demo of such marquee:
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="scroll" Direction="left"><img src="http://i47.tinypic.com/1zokns6.gif" Width="125" Height ="82" alt="Flying bat in a marquee" /></marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
- Image Marquee with text below it.
<!-- Codes by bloggerfreaks.com -->
<marquee Behavior="scroll" Direction="left">
<div style="text-align:center;">
<img src="http://i47.tinypic.com/1zokns6.gif" Width="125" Height ="82" alt="Flying bat in a marquee" /><br />Blogger Freaks Marquee Code Image With Text </div>
</marquee>
<p><a style="font-size:11px;color:#999;" href="http://www.bloggerfreaks.com">Marque Code By Blogger Freaks</a></p>
Possible Changes Of Marquee Codes:
Below are some of the attributes of marquee which can be changed to different patterns as you desires.
- Width: Sets the Width of the marquee.
- Height: Sets the Height of the marquee.
- Direction: Sets the Direction of the marquee.
- Behavior: Whether to slide, bounce, or scroll.
- Scrolldelay: How long the marquee should wait before each jump.
- Scrollamount: How far to jump as it moves.
- Loop: How many times it should loop.
- Bgcolor: Sets the background color of the marquee.
- Hspace: Sets the amount of horizontal space around the marquee.
- Vspace: Sets the amount of vertical space around the marquee.
Source: bloggerfreaks