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

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很