鱼C论坛

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

[技术原创] QT动画制作(二十七)

[复制链接]
发表于 2017-3-18 06:03:07 | 显示全部楼层 |阅读模式

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

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

x
效果:
jdfw.gif
为了省事还是把MainForm.ui.qml删去,直接在main.qml文件敲代码:
import QtQuick 2.5
import QtQuick.Window 2.2

Window {
    visible: true
    width: 500
    height: 500
    title: qsTr("Hello World")
    Rectangle{
        id:ball
        width:140
        height: 140
        radius: 70
        color:"#00B000"
        Text{
            anchors.centerIn: parent
            text:"Qt"
            font.family: "Trebuchet MS"
            color:"white"
            font.pointSize: 54
        }
        SequentialAnimation{
            running: true
            PathAnimation{
                target:ball
                duration: 3000
                easing.type: Easing.Linear
                path: Path {
                    startX: 180; startY: 150//起始位置坐标

                    PathArc {
                        x: 179; y: 150//终止位置坐标
                        radiusX: 150; radiusY: 100//半径
                        useLargeArc: true
                    }
                }
            }
            ScaleAnimator{
                target:ball
                duration:3000
                from:1
                to:5.5
            }
        }
    }
}
Preview: 明天学习动态创建和销毁对象

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
不二如是 + 5 + 5 + 3 会玩!

查看全部评分

本帖被以下淘专辑推荐:

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

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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