java系统找不到指定文件怎么解决
299
2022-08-31
Qt功能优化:Qt 3D画廊
Qt功能优化:Qt 3D画廊
文章目录
Qt功能优化:Qt 3D画廊一、效果图二、使用步骤
1. .pro部分2. .qml部分3. .cpp部分
总结
一、效果图
如下图所示:
二、使用步骤
1. .pro部分
代码如下:
TEMPLATE = appQT += qml quickCONFIG += c++11SOURCES += main.cppRESOURCES += qml.qrc \ image.qrc# Additional import path used to resolve QML modules in Qt Creator's code modelQML_IMPORT_PATH =# Additional import path used to resolve QML modules just forQML_DESIGNER_IMPORT_PATH =# The following define makes your compiler emit warnings if# any feature of Qt which as been marked deprecated (the exact warnings# depend on your compiler).# deprecated API in order to know how to port your code away from it.DEFINES += QT_DEPRECATED_WARNINGS# You can also make your code fail to compile if you use deprecated APIs.# In order to do so, uncomment the following line.# You can also select to disable deprecated APIs only up to a certain version of Qt.#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0# Default rules for deployment.qnx: target.path = /tmp/$${TARGET}/binelse: unix:!android: target.path = /opt/$${TARGET}/bin!isEmpty(target.path): INSTALLS +=
2. .qml部分
Demo.qml
代码如下:
import QtQuick 2.0import QtGraphicalEffects 1.0Rectangle { id:coverflow property ListModel model property int itemCount: 5 PathView{ id:pathView model:coverflow.model delegate: Item { id:delegateItem width: 530 height: 420 z:PathView.iconZ scale:PathView.iconScale Image{ id:image source: url width: delegateItem.width height: delegateItem.height } ShaderEffect { anchors.top: image.bottom width: image.width height: image.height; anchors.left: image.left property variant source: image; property size sourceSize: Qt.size(0.5 / image.width, 0.5 / image.height); fragmentShader: "varying highp vec2 qt_TexCoord0; uniform lowp sampler2D source; uniform lowp vec2 sourceSize; uniform lowp float qt_Opacity; void main() { lowp vec2 tc = qt_TexCoord0 * vec2(1, -1) + vec2(0, 1); lowp vec4 col = 0.25 * (texture2D(source, tc + sourceSize) + texture2D(source, tc- sourceSize) + texture2D(source, tc + sourceSize * vec2(1, -1)) + texture2D(source, tc + sourceSize * vec2(-1, 1))); gl_FragColor = col * qt_Opacity * (1.0 - qt_TexCoord0.y) * 0.2; }" } transform: Rotation{ origin.x:image.width/2.0 origin.y:image.height/2.0 axis{x:0;y:1;z:0} angle: delegateItem.PathView.iconAngle } } path:coverFlowPath pathItemCount: coverflow.itemCount anchors.fill: parent preferredHighlightBegin: 0.5 preferredHighlightEnd: 0.5 } Path{ id:coverFlowPath startX: 0 startY: coverflow.height/3 PathAttribute{name:"iconZ";value: 0} PathAttribute{name:"iconAngle";value: 70} PathAttribute{name:"iconScale";value: 0.6} PathLine{x:coverflow.width/2;y:coverflow.height/3} PathAttribute{name:"iconZ";value: 100} PathAttribute{name:"iconAngle";value: 0} PathAttribute{name:"iconScale";value: 1.0} PathLine{x:coverflow.width;y:coverflow.height/3} PathAttribute{name:"iconZ";value: 0} PathAttribute{name:"iconAngle";value: -70} PathAttribute{name:"iconScale";value: 0.6} PathPercent{value:1.0} }}
main.qml
代码如下:
import QtQuick 2.8import QtQuick.Window 2.2Window { visible: true width:1800 height: 880 title: qsTr("灵眸") ListModel{ id:model ListElement{url:"qrc:/image/1.png"} ListElement{url:"qrc:/image/2.png"} ListElement{url:"qrc:/image/3.png"} ListElement{url:"qrc:/image/4.png"} ListElement{url:"qrc:/image/6.png"} ListElement{url:"qrc:/image/7.png"} ListElement{url:"qrc:/image/8.png"} ListElement{url:"qrc:/image/9.png"} ListElement{url:"qrc:/image/10.png"} ListElement{url:"qrc:/image/11.png"} ListElement{url:"qrc:/image/12.png"} ListElement{url:"qrc:/image/13.png"} ListElement{url:"qrc:/image/14.png"} } CoverFlow{ anchors.fill:parent model:model }}
3. .cpp部分
main.cpp
代码如下:
#include
总结
另,如果大家有时间的话,也可以在个人主页中的专栏部分,查看我的Qt实战专栏与Qt界面优化专栏哦,里面分别存放有Qt相关的实战软件和相对实用的附属功能,大家感兴趣可以看看(๑><๑)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~