Qt Quick实现一个炫酷的折叠动画效果

2024-06-20 07:38

本文主要是介绍Qt Quick实现一个炫酷的折叠动画效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

demo来自 https://github.com/cjmdaixi/FlipAnimation

代码上传到了 csdn

文章目录

  • 效果图
  • 核心代码
  • 从中学习到了什么
    • ShaderEffectSource
    • Flipable
  • 感谢无私奉献的人

效果图

可以动态配置折叠次数
在这里插入图片描述

核心代码

FlipCards.qml

import QtQuick 2.9
import QtQuick.Controls 2.2Item {id: rootproperty int segments: 4property Item flipContentproperty Item coverItemproperty int expandSpeed: 300property int foldSpeed: 300property bool expanding: falseproperty bool folding: falseproperty bool folded: truewidth: flipCardWidthheight: flipCardHeightproperty real flipCardWidth: flipContent.widthproperty real flipCardHeight: flipContent.height / segmentsproperty int flipCardCount: segments - 1signal beginFold()signal beginExpand()ShaderEffectSource{id: bottomCardwidth: flipCardWidthheight: flipCardHeightanchors{left: parent.left; top: parent.top}sourceItem: flipContentsourceRect: Qt.rect(0, 0, flipCardWidth, flipCardHeight)z: flipContent.z + 1}Component{id: flipCardComponentFlipable{id: flipablewidth: root.flipCardWidthheight: root.flipCardHeightproperty alias expandAnimation: expandAnimationproperty alias foldAnimation: foldAnimationproperty alias backItem: backItemproperty alias frontItem: frontItemproperty int index: 0property bool isFirstCard: index === 0property bool isLastCard: index === root.flipCardCount - 1transform: Rotation {id: rotationorigin.x: flipable.width / 2origin.y: flipable.heightaxis.x: -1; axis.y: 0; axis.z: 0angle: 0}front: Item{id: frontItemanchors.fill: parentRectangle{anchors.fill: parentcolor: "white"}}back: ShaderEffectSource{id: backItemsourceItem: flipContentsourceRect: Qt.rect(0, flipCardHeight * (index + 1), flipCardWidth, flipCardHeight)anchors.fill: parent}NumberAnimation{id: expandAnimationduration: expandSpeedtarget: rotationproperty: "angle"to: 180onStarted: {root.height += flipCardHeight;if(isFirstCard){root.expanding = true;}}onStopped: {if(isLastCard){flipContent.layer.enabled = false;flipContent.visible = true;bottomCard.visible = false;root.expanding = false;root.folded = false;}}}NumberAnimation{id: foldAnimationduration: foldSpeedtarget: rotationproperty: "angle"to: 0onStarted: {if(isLastCard){flipContent.layer.enabled = true;flipContent.visible = false;bottomCard.visible = true;root.folding = true;}}onStopped: {root.height -= flipCardHeight;if(isFirstCard){root.folding = false;root.folded = true;}}}}}Loader{id: firstCardLoadersourceComponent: flipCardComponentonLoaded: {var prev = firstCardLoader.item;root.beginExpand.connect(prev.expandAnimation.start);flipContent.parent = root;flipContent.visible = false;coverItem.parent = prev.frontItem;prev.parent = bottomCard;for(var i = 1; i < root.flipCardCount; i++){//console.log("create flip card ", i);var card = flipCardComponent.createObject(prev.backItem, {"index": i});prev.expandAnimation.stopped.connect(card.expandAnimation.start);if(i === root.flipCardCount - 1){root.beginFold.connect(card.foldAnimation.start);}card.foldAnimation.stopped.connect(prev.foldAnimation.start);prev = card;}}}function expand(){root.beginExpand();}function fold(){root.beginFold();}
}

从中学习到了什么

ShaderEffectSource

ShaderEffectSource类型将sourceItem渲染为纹理并在场景中显示。sourceItem被绘制到纹理中,就像它是一个完全不透明的根项目一样。因此,sourceItem本身可以不可见,但仍会出现在纹理中。

ShaderEffectSource可以用作:

  • ShaderEffect中的纹理源。这允许您将自定义着色器效果应用于任何Qt Quick项目。
  • 用于复杂项目的缓存。复杂项目可以在纹理中渲染一次,然后可以自由设置动画,而无需每帧再次渲染复杂项目。
  • 不透明层。ShaderEffectSource允许将不透明度作为一个组应用于项目,而不是单独应用于每个项目。

用法如下:

  import QtQuick 2.0Rectangle {width: 200height: 100gradient: Gradient {GradientStop { position: 0; color: "white" }GradientStop { position: 1; color: "black" }}Row {opacity: 0.5Item {id: foowidth: 100; height: 100Rectangle { x: 5; y: 5; width: 60; height: 60; color: "red" }Rectangle { x: 20; y: 20; width: 60; height: 60; color: "orange" }Rectangle { x: 35; y: 35; width: 60; height: 60; color: "yellow" }}ShaderEffectSource {width: 100; height: 100sourceItem: foo}}}

效果:在这里插入图片描述
即使把foo隐藏掉,ShaderEffectSource 仍然可以显示。

Flipable

Flipable是一种可以在正面和背面之间明显“翻转”的物品,就像一张卡片。它可以与旋转、状态和过渡类型一起使用,以产生翻转效果。

front和back属性用于保存分别显示在可翻转项目正面和背面的项目。

用法如下,纸牌反转demo,效果如图:

在这里插入图片描述

flipable.qmlproject

import QmlProject 1.1Project {mainFile: "flipable.qml"/* Include .qml, .js, and image files from current directory and subdirectories */QmlFiles {directory: "."}JavaScriptFiles {directory: "."}ImageFiles {directory: "."}
}

Card.qml

import QtQuick 2.0Flipable {id: containerproperty alias source: frontImage.sourceproperty bool flipped: trueproperty int xAxis: 0property int yAxis: 0property int angle: 0width: front.width; height: front.heightfront: Image { id: frontImage }back: Image { source: "back.png" }state: "back"MouseArea { anchors.fill: parent; onClicked: container.flipped = !container.flipped }transform: Rotation {id: rotation; origin.x: container.width / 2; origin.y: container.height / 2axis.x: container.xAxis; axis.y: container.yAxis; axis.z: 0}states: State {name: "back"; when: container.flippedPropertyChanges { 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 }}}}
}

flipable.qml

import QtQuick 2.0
import "content"Rectangle {id: windowwidth: 480; height: 320color: "darkgreen"Row {anchors.centerIn: parent; spacing: 30Card { source: "content/9_club.png"; angle: 180; yAxis: 1 }Card { source: "content/5_heart.png"; angle: 540; xAxis: 1 }}
}

感谢无私奉献的人

这篇关于Qt Quick实现一个炫酷的折叠动画效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1077515

相关文章

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P

防近视护眼台灯什么牌子好?五款防近视效果好的护眼台灯推荐

在家里,灯具是属于离不开的家具,每个大大小小的地方都需要的照亮,所以一盏好灯是必不可少的,每个发挥着作用。而护眼台灯就起了一个保护眼睛,预防近视的作用。可以保护我们在学习,阅读的时候提供一个合适的光线环境,保护我们的眼睛。防近视护眼台灯什么牌子好?那我们怎么选择一个优秀的护眼台灯也是很重要,才能起到最大的护眼效果。下面五款防近视效果好的护眼台灯推荐: 一:六个推荐防近视效果好的护眼台灯的