American Index

    - Alphabets
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Animals Index

    - American
    - Awareness
    - Backgrounds
    - Blinkies
    - Canadian
    - Graphics
    - Lines & Bars
    - Most Wanted


    Around the World

    - Africa
    - Antarctica
    - Asia
    - Backgrounds
    - Blinkies
    - Countries
    - Europe
    - Graphics
    - Lines & Bars
    - North America
    - Oceania
    - South America


    Awards Index

    - 1 Award
    - Site Fights


    Awareness Index

    - Aids
    - Animal Abuse
    - Autism
    - Backgrounds
    - Blinkies
    - Breast Cancer
    - Heart & Stroke
    - Lines & Bars
    - Other Causes
    - Peace
    - Ribbons


    Backgrounds Index

    - American
    - Awareness
    - Canadian
    - Glitter
    - Ribbons


    Betty Boop Index

    - Alphabets
    - American
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Canada Index

    - Alphabets
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars
    - Tartans

    My Canada

    - Canada Eh
    - Kelowna Fire
    - My Canada
    - My Alberta
    - My Calgary
    - My Okotoks


    Color Index

    - Color Picker
    - Rollover Cube
    - Web Safe Colors
    - What Color Means


    Comics Index

    - American
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Favorite Links

    - Backgrounds
    - Banners & Labels
    - Blinkies
    - Buttons
    - Countdowns
    - Generators
    - Glitter
    - Graphics
    - html Help
    - Icons
    - Javascripts
    - Ribbon Makers
    - Templates
    - Triple Sets


    Fun Creations Index

    - Anyway Challenge
    - Aware Ribbons
    - Be Aware
    - Capers for Cancer
    - Chicken Dance
    - Chilis
    - I Love This Bar
    - In the Garden
    - Passionately Pink
    - Pepper Dance
    - Provincial Trivia
    - Wanted Posters
    - Zodiac Animals
    - Zodiac Calculator


    Graphics Index

    - American
    - Animals
    - Around the World
    - Awareness
    - Betty Boop
    - Blinkies
    - Canadian
    - Children
    - Comics
    - Men & Women
    - Special Days
    - Sports


    html Help

    - Introduction
    - Basic Tags
    - Using Tags
    - Adding Images
    - Adding Music
    - Resources


    Lines & Bars Index

    - American
    - Animals
    - Around the World
    - Awareness
    - Betty Boop
    - Canadian
    - Children
    - Comics
    - Glitter
    - Men & Women
    - Special Days
    - Sports


    Men & Women

    - Babes
    - Battle of the Sexes
    - Cowboys
    - Hunks
    - Men
    - Men & Women
    - Native
    - Playboy
    - Police & Fire
    - Women

    Children Index

    - American
    - Backgrounds
    - Blinkies
    - Canadian
    - Graphics
    - Lines


    Scripts Index

    - Marquees
    - Print Page


    Special Days Index

    - April Fools
    - Birthday
    - Canada Day
    - Christmas
    - Easter
    - Father's Day
    - Halloween
    - Independence Day
    - Mardi Gras
    - Mother's Day
    - New Years
    - St. Patricks
    - Thanksgiving
    - Valentines
    - Wedding


    Sports Index

    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars

 
 
Thank you for taking the time to Vote for my Site
Thanks for Voting for my Site. Jumpy :)

 

©Webcreations by Jumpy
2008 - 2022

About Marquees

Marquees were developed by Internet Explorer and may not work in other browsers. They can have images, text or both. They can go in different directions. Marquees are created with html code. Other effects can be obtained with Javascripts.

These Marquees have been tested in both Internet Explorer and Firefox. They may not work properly in other browsers. If they are not working right, try them in Internet Explorer or Firefox before giving up. It may just be a browser glitch.


Basic Marquee

This is a basic marquee. By default the direction will go left.

Code:
<marquee> Your Words</marquee>


Changing Direction

Make the marquee scroll to the right. This is helpful when images are used.

Code:
<marquee direction="right"> Make the marquee scroll to the right. This is helpful when images are used. </marquee>


Back and Forth

Which way do I go?

Code:
<div align="center"> <marquee behavior="alternate" width="60%"> Which way do I go? </marquee> </div>


Images, Backgrounds and Alignment

HAVE A SPOOKY HALLOWEEN

Code:
<div align="center"> <marquee bgcolor="orange" direction="left" width="90%"> <img src="cat.gif" align="absbottom">HAVE A SPOOKY HALLOWEEN<img src="cat.gif" align="absbottom"> </marquee> </div>

Code:
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" background="pageimages/train_bg.gif">
<tr valign="bottom">
<td width="9%"><img src="pageimages/building1.gif" width="46" height="54"></td>
<td width="77%"><marquee direction="right" width="100%">
<img src="pageimages/train_caboose.gif" width="54" height="21" border="0">
<img src="pageimages/train3.gif" width="85" height="21" border="0">
<img src="pageimages/train2.gif" width="100" height="21">
<img src="pageimages/train1.gif" width="75" height="21" border="0">
<img src="pageimages/train_engine.gif" width="105" height="21" border="0">
</marquee></td>
<td width="14%"><img src="pageimages/building2.gif" width="71" height="89"></td>
</tr>
</table>

Note: The images for the train are reversed to compensate for the scroll going backwards.


Vertical Scrolling Marquee

This Marquee is browser sensitive and may not work properly in all browsers.

It is created using html only. The scroll is jerky. This can be avoided by using a javascript rather than html.

The lower the scrolldelay, the faster it moves.

You may also want to put the marquee inside a table to control the width thereby reducing the effect of the blank space at the end of the message.

Code:
<marquee scrolldelay="250" behavior="scroll" direction="up">This Marquee is browser sensitive and may not work properly in all browsers. It is created using html only. The scroll is jerky. This can be avoided by using a javascript rather than html. The lower the scrolldelay, the faster it moves. You may also want to put marquee inside a table to control the width thereby reducing the effect of the blank space at the end of the message.
</marquee>


Mouse Over Stop

This smooth flowing marquee has some javascript code in it. The user can stop the scroll at any time simply by putting the mouse over it. This makes it great for adding links.

Why not visit my Kelowna Fire Page? It sets out the total sequence of events for the multi billion dollar fire of 2003.

Click Here.


Code:
<marquee behavior= "scroll" direction= "up" height="150" scrollamount= "2" scrolldelay= "70" onmouseover='this.stop()' onmouseout='this.start()'>This smooth flowing marquee has some javascript code in it. The user can stop the scroll at any time simply by putting the mouse over it. This makes it great for adding links.</marquee>


Please take the time to sign my guest book. I would love to hear from you.

Sign my Guest Book!
Read my Guest Book!
 
 
This Site is Hosted by Host Papa. Switch NOW to Host Papa
 

 

Jumpy