If you find this helpful, please click the Google |


Marquee Styles
A number of CSS style properties can be used to create a marquee effect as an alternative to the HTML <marquee> tag (deprecated). A marquee effect is especially useful in HTML apps on cell phones and other mobile devices with limited screen space to display content that does easily fit the screen width. This may be one reason the earliest support for the marquee style is in the Safari browser, where it can be used for HTML applications on iOS devices (iPhone, iPad and iPod Touch).
Check out the examples of marquees in Safari on your iPhone, iPad or iPod Touch.
Marquee Style Properties
Property* | Values and Description |
---|---|
overflow: auto |
|
overflow-style: marquee |
|
white-space: nowrap |
|
marquee-direction: forward marquee-direction: reverse |
The initial direction that the marquee is moved. With marquee-loop > 1 and marquee-style: alternate , the marquee will be moved in the opposite direction when animation in the specified direction has completed.
|
marquee-loop | a positive integer (default 1 ), zero (0 ) or the keyword infinite . |
marquee-style: scroll marquee-style: slide marquee-style: alternate |
|
marquee-speed: slow marquee-speed: normal marquee-speed: fast |
|
-overflow-x: -webkit-marquee | equivalent to overflow-style: marquee
|
-webkit-marquee | shorthand notation for marquee properties in the form: direction increment repetition style speed |
-webkit-marquee-direction: auto -webkit-marquee-direction: forwards -webkit-marquee-direction: backwards -webkit-marquee-direction: right -webkit-marquee-direction: left -webkit-marquee-direction: up -webkit-marquee-direction: down -webkit-marquee-direction: ahead -webkit-marquee-direction: reverse |
equivalent to marquee-direction The initial direction that the marquee is moved. With -webkit-marquee-repetition-property > 1 and -webkit-marquee-style-property: alternate , the marquee will be moved in the opposite direction when animation in the specified direction has completed.
|
-webkit-marquee-increment | The increment can be specified as a positive or zero length or one of the keywords:
|
-webkit-marquee-repetition | equivalent to marquee-loop a positive or zero count for the number of times that animation of the marquee will be repeated |
-webkit-marquee-style: none -webkit-marquee-style: scroll -webkit-marquee-style: slide -webkit-marquee-style: alternate |
equivalent to marquee-style
|
-webkit-marquee-speed | equivalent to marquee-speed distance over a period of time in the format distance/time or a keyword:
|
* includes possible values for enumerated properties |
Marquee Examples
The first browsers that these examples work in are the WebKit browsers, except for the shorter example with marquee-style: alternate
, which works in Safari but not Chrome.
This uses marquee-style: scroll, so it scrolls off the screen then scrolls back on.
This uses marquee-style: slide, so it slides on, disappears and then slides on again.
This uses marquee-style: alternate, so it bounces back and forth.
In the last example, some left and right padding is added with the padding: 0 1em
style property in order to give the user a little time to read the first and last word at each end.