Qt:QML:文字自动滚动

来源:互联网 发布:剑灵龙女九头身数据图 编辑:程序博客网 时间:2024/05/21 09:20

文字自动滚动效果

这里写图片描述

代码

import QtQuick 2.5import QtQuick.Window 2.2Window {    visible: true    width: 400    height: 300    title: qsTr("Text Auto Scrool")    Rectangle {        width: 131; height: 25        color: "red"        clip:true        anchors.centerIn: parent        Text        {            id:idtext            //width: parent.width            height:parent.height            text:"123456789abcdefghijklmnopqrstuvwxyz"            color:"yellow"            verticalAlignment: Text.AlignVCenter            SequentialAnimation on x {                loops: Animation.Infinite                PropertyAnimation {                    from:0                    to: -idtext.width                    duration: 5000                }            }        }    }}

完整代码: https://github.com/CodeBees/qtExample/tree/master/textautoscrool

1 0
原创粉丝点击