鱼C论坛

 找回密码
 立即注册
查看: 2239|回复: 0

[技术原创] QT动画制作(八)

[复制链接]
发表于 2017-2-27 07:30:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
效果: jdfw.gif

以前我们都是单个物体运动,今天我们把多个物体组合起来一起运动
知识点1:物体群组运动
知识点2:透明度自动变化
知识点3:大小自动变化
还是先建个QML项目,在 / 下新建Rect.qml文件
import QtQuick 2.4

Item {
Rectangle{
    width:400
    height:400
    radius: 200
    border.width: 3
    border.color: "#00B000"
    anchors.centerIn: parent
    XAnimator on x{
        from:0
        to:250
        duration:7000
        loops:Animator.Infinite
        easing.type: Easing.Linear//线性运动
    }
    RotationAnimator on rotation{
        from:0
        to:360
        duration: 7000
        loops:Animator.Infinite
    }

            Column{
                anchors.centerIn: parent
                spacing:5
                Repeater{
                    model:6
            Rectangle{
                width:60
                height:60
                color:"red"
                ScaleAnimator on scale{//大小变化
                    from:0.1
                    to:1
                    duration:7000
                    loops:Animator.Infinite
                }
                OpacityAnimator on opacity {//深浅度变化
                    from:0.5
                    to:1
                    duration:7000
                    loops:Animator.Infinite
                }

                }
                }
            }
            Row{
                anchors.centerIn: parent
                spacing:5
                Repeater{
                    model:6
            Rectangle{
                width:60
                height:60
                color:"red"
                ScaleAnimator on scale{//大小变化
                    from:0.1
                    to:1
                    duration:7000
                    loops:Animator.Infinite
                }
                OpacityAnimator on opacity {//深浅度变化
                    from:0.5
                    to:1
                    duration:7000
                    loops:Animator.Infinite
                }

                }
                }
            }
}
}

MainForm.ui.qml文件
import QtQuick 2.5


   Rect{anchors.centerIn: parent}
main.qml文件
import QtQuick 2.5
import QtQuick.Window 2.2

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    MainForm {
        anchors.fill: parent

    }
}

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +5 收起 理由
不二如是 + 5 + 5 + 5 支持楼主!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 15:03

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表