You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > webkitMarqueeRepetition
webkitMarqueeRepetition style property
Specifies or retrieves the number of times the marquee should repeat.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: -webkit-marquee-repetition |
Possible values:
The type of this property is string.
One of the following values:
An infinite number of times. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
Integer, the number of repeats. |
Default: infinite.
Example HTML code 1:
This example illustrates the use of the -webkit-marquee-repetition property:
|
||||
<head> <style> #myMarquee { border: 1px dotted #000000; width: 200px; height: 60px; text-align: right; -webkit-marquee-direction: forwards; -webkit-marquee-increment: 1px; -webkit-marquee-repetition: infinite; -webkit-marquee-speed: fast; -webkit-marquee-style: scroll; } </style> </head> <body> <marquee id="myMarquee"> first line<br /> second line<br /> third line </marquee> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the webkitMarqueeRepetition property in JavaScript:
|
||||
<head> <style> #myMarquee { border: 1px dotted #000000; width: 200px; height: 60px; text-align: right; -webkit-marquee-direction: up; -webkit-marquee-increment: 6px; -webkit-marquee-repetition: infinite; -webkit-marquee-speed: fast; -webkit-marquee-style: scroll; } </style> <script type="text/javascript"> function ChangeMarquee (select) { var marquee = document.getElementById ("myMarquee"); var input = document.getElementById ("repeatTime"); if ('webkitMarqueeRepetition' in marquee.style) { marquee.style.webkitMarqueeRepetition = input.value; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <marquee id="myMarquee"> first line<br /> second line<br /> third line </marquee> <input type="text" value="2" id="repeatTime" /> <button onclick="ChangeMarquee ();">Change the time of repeats</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
Related pages:
External links:
User Contributed Comments