• 5.21 marquee组件


    跑马灯组件,用于展示一段单行滚动的文字。

    支持设备

    手机

    平板

    智慧屏

    智能穿戴

    支持

    支持

    支持

    支持

    子组件

    不支持。

    属性

    除支持通用属性外,还支持如下属性:

    名称

    类型

    默认值

    必填

    描述

    scrollamount

    number

    6

    跑马灯每次滚动时移动的最大长度。

    loop

    number

    -1

    跑马灯滚动的次数。如果未指定,则默认值为-1,当该值小于等于零时表示marquee将连续滚动。

    direction

    string

    left

    设置跑马灯的文字滚动方向,可选值为left和right。

    样式

    除支持通用样式外,还支持如下样式:

    名称

    类型

    默认值

    必填

    描述

    color

    <color>

    手机:#e5000000

    智慧屏:#e5ffffff

    智能穿戴:#ffffffff

    设置跑马灯中文字的文本颜色。

    font-size

    <length>

    37.5

    设置跑马灯中文字的文本尺寸。

    allow-scale

    boolean

    true

    设置跑马灯中文字的文本尺寸是否跟随系统设置字体缩放尺寸进行放大缩小。

    说明

    如果在config描述文件中针对ability配置了fontSize的config-changes标签,则应用不会重启而直接生效。

    font-weight

    number | string

    normal

    设置跑马灯中文字的字体的粗细,见text组件font-weight的样式属性

    font-family

    string

    sans-serif

    设置跑马灯中文字的字体列表,用逗号分隔,每个字体用字体名或者字体族名设置。列表中第一个系统中存在的或者通过自定义字体指定的字体,会被选中作为文本的字体。

    事件

    除支持通用事件外,还支持如下事件:

    名称

    参数

    描述

    bounce(Rich)

    -

    当文本滚动到末尾时触发该事件。

    finish(Rich)

    -

    当完成滚动次数时触发该事件。需要在 loop 属性值大于 0 时触发。

    start(Rich)

    -

    当文本滚动开始时触发该事件。

    方法

    除支持通用方法外,还支持如下方法:

    名称

    参数

    描述

    start

    -

    开始滚动。

    stop

    -

    停止滚动。

    示例 

    hml

    1. <div class="container">
    2. <marquee id="customMarquee" class="customMarquee" scrollamount="{{scrollAmount}}" loop="{{loop}}"direction="{{marqueeDir}}"
    3. onbounce="onMarqueeBounce" onstart="onMarqueeStart" onfinish="onMarqueeFinish">{{marqueeCustomData}}</marquee>
    4. <div class="content">
    5. <button class="controlButton" onclick="onStartClick">Start</button>
    6. <button class="controlButton" onclick="onStopClick">Stop</button>
    7. </div>
    8. </div>
    9. <!-- <marquee ></marquee>组件里面表示跑马灯文字-->
    10. <!-- allow-scale设置跑马灯中文字的文本尺寸是否跟随系统设置字体缩放尺寸进行放大缩小。-->
    11. <!--bounce(Rich)当文本滚动到末尾时触发该事件-->

    css

    1. .container {
    2. flex-direction: column;
    3. justify-content: center;
    4. align-items: center;
    5. background-color: #ffffff;
    6. }
    7. .customMarquee {
    8. width: 100%;
    9. height: 80px;
    10. padding: 10px;
    11. margin: 20px;
    12. border: 4px solid #ff8888;
    13. border-radius: 20px;
    14. font-size: 40px;
    15. color: #ff8888;
    16. font-weight: bolder;
    17. font-family: serif;
    18. background-color: #ffdddd;
    19. }
    20. .content {
    21. flex-direction: row;
    22. }
    23. .controlButton {
    24. flex-grow: 1;
    25. background-color: #F2F2F2;
    26. text-color: #0D81F2;
    27. }

    js

    1. export default {
    2. data: {
    3. scrollAmount: 30,
    4. loop: 3,
    5. marqueeDir: 'left',
    6. marqueeCustomData: 'Custom marquee',
    7. },
    8. onMarqueeBounce: function() {
    9. console.log("onMarqueeBounce");
    10. },
    11. onMarqueeStart: function() {
    12. console.log("onMarqueeStart");
    13. },
    14. onMarqueeFinish: function() {
    15. console.log("onMarqueeFinish");
    16. },
    17. onStartClick (evt) {
    18. this.$element('customMarquee').start();
    19. },
    20. onStopClick (evt) {
    21. this.$element('customMarquee').stop();
    22. }
    23. }

     图片

     

  • 相关阅读:
    Java详解:单列 | 双列集合 | Collections类
    MATLAB关系运算
    ansible介绍、主机清单、临时命令的使用
    06.Oracle数据备份与恢复
    [附源码]JAVA毕业设计老年人健康饮食管理系统(系统+LW)
    Rust Aya 编写 eBPF 程序
    Codeforces Round #833 (Div. 2)
    搭建Spring的源码环境
    Python自学教程8-数据类型有哪些注意事项
    [数据结构]——单链表超详细总结
  • 原文地址:https://blog.csdn.net/qq_63202674/article/details/124902604