# marquee The **** component displays single-line scrolling text. ## Permission List None ## Child Component Not supported ## Attribute In addition to the attributes in [Universal Attributes](js-components-common-attributes.md), the following attributes are supported. Name Type Default Value Mandatory Description scrollamount number 6 No Maximum length of each scroll. loop number -1 No Number of rolling times. If this parameter is not set, the default value -1 is used. When the value is less than or equal to 0, the marquee scrolls continuously. direction string left No Direction in which the marquee scrolls, which can be left or right. ## Style In addition to the styles in [Universal Styles](js-components-common-styles.md), the following styles are supported. Name Type Default Value Mandatory Description color <color> #e5000000 No Font color of the scrolling text. font-size <length> 37.5 No Font size of the scrolling text. allow-scale boolean true No Whether the font size changes with the system's font size settings. NOTE: If the config-changes tag of fontSize is configured for abilities in the config.json file, the setting takes effect without application restart. font-weight number | string normal No Font weight of the scrolling text. For details, see font-weight of the text component. font-family string sans-serif No Font family, in which fonts are separated by commas (,). Each font is set using a font name or font family name. The first font that exists in the system or the font specified by Custom Font Styles in the family is selected as the font for the text. ## Event In addition to the events in [Universal Events](js-components-common-events.md), the following events are supported. Name Parameter Description bounce(Rich) - Triggered when the marquee scrolls to the end. finish(Rich) - Triggered when the marquee finishes the specified number of scrollings (value of the loop attribute). It can be triggered only when the loop attribute is set to a number greater than 0. start(Rich) - Triggered when the marquee starts to scroll. ## Method In addition to the methods in [Universal Methods](js-components-common-methods.md), the following events are supported. Name Parameter Description start - Starts scrolling. stop - Stops scrolling. ## Example Code ``` {{marqueeCustomData}} Start Stop ``` ``` /* xxx.css */ .container { flex-direction: column; justify-content: center; align-items: center; background-color: #ffffff; } .customMarquee { width: 100%; height: 80px; padding: 10px; margin: 20px; border: 4px solid #ff8888; border-radius: 20px; font-size: 40px; color: #ff8888; font-weight: bolder; font-family: serif; background-color: #ffdddd; } .content { flex-direction: row; } .controlButton { flex-grow: 1; background-color: #F2F2F2; text-color: #0D81F2; } ``` ``` // xxx.js export default { data: { scrollAmount: 30, loop: 3, marqueeDir: 'left', marqueeCustomData: 'Custom marquee', }, onMarqueeBounce: function() { console.log("onMarqueeBounce"); }, onMarqueeStart: function() { console.log("onMarqueeStart"); }, onMarqueeFinish: function() { console.log("onMarqueeFinish"); }, onStartClick (evt) { this.$element('customMarquee').start(); }, onStopClick (evt) { this.$element('customMarquee').stop(); } } ``` 
Name
Type
Default Value
Mandatory
Description
scrollamount
number
6
No
Maximum length of each scroll.
loop
-1
Number of rolling times. If this parameter is not set, the default value -1 is used. When the value is less than or equal to 0, the marquee scrolls continuously.
direction
string
left
Direction in which the marquee scrolls, which can be left or right.
color
<color>
#e5000000
Font color of the scrolling text.
font-size
<length>
37.5
Font size of the scrolling text.
allow-scale
boolean
true
Whether the font size changes with the system's font size settings.
If the config-changes tag of fontSize is configured for abilities in the config.json file, the setting takes effect without application restart.
font-weight
number | string
normal
Font weight of the scrolling text. For details, see font-weight of the text component.
font-family
sans-serif
Font family, in which fonts are separated by commas (,). Each font is set using a font name or font family name. The first font that exists in the system or the font specified by Custom Font Styles in the family is selected as the font for the text.
Parameter
bounce(Rich)
-
Triggered when the marquee scrolls to the end.
finish(Rich)
Triggered when the marquee finishes the specified number of scrollings (value of the loop attribute). It can be triggered only when the loop attribute is set to a number greater than 0.
start(Rich)
Triggered when the marquee starts to scroll.
start
Starts scrolling.
stop
Stops scrolling.