【Qt 学习之路】QML翻转效果

目录

1、简述

2、效果

3、源码分享

4、核心代码

5、Flipable讲解


1、简述

此示例仅供大家学习参考

2、效果

3、源码分享

这个Demo的源码我已经上传到CSDN,可以下载O(∩_∩)O哈!

源码地址:http://download.csdn.net/detail/u014597198/9748736

4、核心代码

核心的卡片代码如下:

import QtQuick 2.0

Flipable {
    id: container

    property alias source: frontImage.source
    property bool flipped: true
    property int xAxis: 0
    property int yAxis: 0
    property int angle: 0

//    width: front.width; height: front.height
    width: 60;
    height: 80;
    front: Image { id: frontImage; anchors.fill: parent }
    back: Image { source: "qrc:/puke/back.png"; anchors.fill: parent }

    state: "back"

    MouseArea { anchors.fill: parent; onClicked: container.flipped = !container.flipped }

    transform: Rotation {
        id: rotation; origin.x: container.width / 2; origin.y: container.height / 2
        axis.x: container.xAxis; axis.y: container.yAxis; axis.z: 0
    }

    states: State {
        name: "back"; when: container.flipped
        PropertyChanges { target: rotation; angle: container.angle }
    }

    transitions: Transition {
        ParallelAnimation {
            NumberAnimation { target: rotation; properties: "angle"; duration: 600 }
            SequentialAnimation {
                NumberAnimation { target: container; property: "scale"; to: 0.75; duration: 300 }
                NumberAnimation { target: container; property: "scale"; to: 1.0; duration: 300 }
            }
        }
    }
}

5、Flipable讲解

此类型提供一个可以翻转的界面。此类型提供一种可以在其正面和背面之间翻转的 Item,就像一张卡片。它可以与 RotationState 和 Transition 类型结合使用来产生翻转效果。

属性成员

1、back : Item

      front : Item

正面和背面。

2、side enumeration

当前可见的一侧。可能值:

  • Flipable.Front
  • Flipable.Back
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

沙振宇

你的鼓励将是我创作的最大动力~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值