【QML】简单动画实现

简介: 【QML】简单动画实现

QML动画

示例1:动画作为属性值的来源

import QtQuick 2.0

//动画作为属性值的来源
//语法: 动画on属性
//easing属性来实现缓和曲线
Rectangle{
    width: 100
    height: 100
    color: "red"
    PropertyAnimation on x{
        to:50
        duration: 1000
        loops: Animation.Infinite //无限循环
        easing.type: Easing.OutBounce//反弹效果
    }
    PropertyAnimation on y{
        to:50
        duration: 1000
        loops: Animation.Infinite
        easing.type: Easing.OutBounce
    }
}

示例2:行为动画

import QtQuick 2.0

//行为动画
//Behavior为一个属性来指定默认的动画
Item{
    width: 100
    height: 100

    Rectangle{
        id:rect1
        width: 100
        height: 100
        color:"green"

        Behavior on x{
            PropertyAnimation{duration: 500}
        }
        Behavior on y{
            PropertyAnimation{duration: 500}
        }
    }

    MouseArea{
        anchors.fill:parent
        onClicked: {
            rect1.x = mouse.x
            rect1.y = mouse.y

        }

    }
}

示例3:信号处理器中的动画

import QtQuick 2.0

//行为动画
//Behavior为一个属性来指定默认的动画

Rectangle{
        id:rect1
        width: 100
        height: 100
        color:"green"

        MouseArea{
            anchors.fill:parent
            onClicked:PropertyAnimation{
                target: rect1
                properties: "x,y"
                to:50
                duration:2000
            }
        }
}

示例4:独立动画

import QtQuick 2.0

//独立动画(动画作为普通的QML对象来创建)
Rectangle{
    id:rect1
    width: 100
    height: 100
    color:"green"
    PropertyAnimation{
        id:rect1_animation
        target:rect1
        properties: "x,y"
        duration: 1000

    }
    MouseArea{
        anchors.fill: parent
        onClicked: {
            rect1_animation.to = 50
            rect1_animation.running = true
        }
    }
}

示例5:状态切换

import QtQuick 2.0

//状态切换
Rectangle{
    id:rect1
    width: 100
    height: 100
    color:"green"

    MouseArea{
        anchors.fill: parent
        onClicked: {
            rect1.state = "moved"
        }
        onReleased: {
            rect1.state = "moved_2"
        }
    }

    //状态列表
    //states:[]
    states:[
        State {
            name:"moved"
            PropertyChanges {
                target: rect1
                x:50
                y:50
            }
        },
        State {
            name:"moved_2"
            PropertyChanges {
                target: rect1
                x:20
                y:20
            }
           }
    ]

    transitions: Transition {
            PropertyAnimation{
                properties:"x,y"
                duration: 1000

            }
    }
}

示例6:动画元素

  import QtQuick 2.0

//动画元素
Rectangle{
    width: 200
    height: 200


    //颜色
    ColorAnimation on color{
         from:"yellow"
         to:"red"
         duration: 2000
    }

    //旋转
    RotationAnimation on rotation {
        to:90
        duration: 3000
        direction: RotationAnimation.Clockwise//顺时针方向
    }
}

示例7:组合动画

import QtQuick 2.0

//组合动画
Rectangle{
    width: 100
    height: 100

    Image{
        source:"picture.jpg"
        anchors.horizontalCenter: parent.horizontalCenter
        y:0
        SequentialAnimation on y{
            loops:Animation.Infinite
            NumberAnimation{
                to:250
                easing.type: Easing.OutBounce
                duration: 1000
            }

            PauseAnimation {
                duration: 1000
            }

            NumberAnimation {
                to:0
                easing.type: Easing.OutBounce
                duration: 1000
            }
        }
    }
}
相关文章
|
7月前
|
前端开发 JavaScript 开发者
【QML进阶 进度条设计】打造动态弧形进度条特效
【QML进阶 进度条设计】打造动态弧形进度条特效
422 2
|
C# 前端开发
WPF加载等待动画
原文:WPF加载等待动画 原文地址:https://www.codeproject.com/Articles/57984/WPF-Loading-Wait-Adorner 界面遮罩 等待动画全局颜色 ...
3484 0
|
4月前
QML 界面切换的方法
QML 界面切换的方法
319 1
|
6月前
Qml:鼠标事件
Qml:鼠标事件
QT中的动画类(QPropertyAnimation)
QT中的动画类(QPropertyAnimation)
180 0
|
存储 UED
Qt自定义控件之动画文本
Qt自定义控件之动画文本
137 0
|
7月前
|
算法 程序员 人机交互
【QML 设置颜色】QML中的色彩魔法:从取色器到用户界面
【QML 设置颜色】QML中的色彩魔法:从取色器到用户界面
481 0
|
开发工具 C语言
Qt编写自定义控件33-图片切换动画
一、前言 在很多看图软件中,切换图片的时候可以带上动画过渡或者切换效果,显得更人性化,其实主要还是炫一些,比如百叶窗、透明度变化、左下角飞入等,无论多少种效果,核心都是围绕QPainter来进行,将各种动画效果对应的图片的区域动态计算并绘制出来,配合以QPropertyAnimation动画属性产生线性插值,比如渐入飞入时候,可以中间快速两端慢速。
1046 1
|
开发工具
MFC窗口特效之动画效果(一) .
最近在学习MFC的过程中,看到一个窗口动画特效例子,不过它是在一个对话框里面嵌入效果,我想如果能把它的代码提取出来再写成一个窗口动画类就好了。于是便着手写了这个类,你可以去CSND下载这个代码运行看看。
1321 0