当前位置:   article > 正文

Qt Quick 底部导航+路径动画_qt路径动画

qt路径动画

写一百次底部导航,有100次不同的写法,我也醉了 ,因此在此记录各种不同的写法

FooterItem.Qml:
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
import QtQuick.Controls.Material 2.0
import  "./GoogleColor.js"   as  GColor

Rectangle{
    signal  click();
    property string mtxt: ""
    width: parent.width/4
    height: parent.height
    border.width: 1
    border.color: "#cccccc"
    Behavior on color{
        PropertyAnimation{duration: 1000}
    }

    Text{
        text:mtxt
        anchors.centerIn: parent
        font.pixelSize: 18
        color:"#ffffff"
        font.bold: true
    }
    MouseArea{
        anchors.fill: parent
        onClicked: {
            click();
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
MyFooterItem.qml:
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
import QtQuick.Controls.Material 2.0
import  "./GoogleColor.js"   as  GColor


Item {
    property int  curindex: 0
    property int mw: 0
    property int mh: 0
    property int mx: 0
    property int my: 0

    Component.onCompleted: {
        curindex=0
    }



    Rectangle{
        id:bks
        width: mw
        height: mh
        color: GColor.浅绿色["700"]
        z:parent.z+1
        opacity: 0.21
    }


    PathAnimation{
        id:p
        loops: 1
        target:bks
        duration: 555
        path: Path{
                PathLine{
                    x:mx
                    y:my
                }
        }
    }


    function  setorg(it)
    {
        mw=it.width
        mh=it.height
        mx=it.x
        my=it.y
        p.restart()
    }

    Row{
        anchors.fill: parent
        FooterItem{
            mtxt: "首页"
            color:curindex==0?GColor.浅绿色["500"]:GColor.浅蓝色["500"]
            onClick: {
                curindex=0
                setorg(this)


            }
        }
        FooterItem{
            mtxt: "附近"
            color:curindex==1?GColor.浅绿色["500"]:GColor.浅蓝色["500"]
            onClick: {
                curindex=1
                 setorg(this)
            }
        }
        FooterItem{
            mtxt: "消息"
            color:curindex==2?GColor.浅绿色["500"]:GColor.浅蓝色["500"]
            onClick: {
                curindex=2
                 setorg(this)
            }
        }
        FooterItem{
            mtxt: "个人中心"
            color:curindex==3?GColor.浅绿色["500"]:GColor.浅蓝色["500"]
            onClick: {
                curindex=3
                 setorg(this)
            }
        }
    }


}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
MAIN.QML:


import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
import QtQuick.Controls.Material 2.0
import  "./GoogleColor.js"   as  GColor
ApplicationWindow {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    footer:MyFooter{
        width: parent.width
        height: 60
        onCurindexChanged: {
            console.log(curindex)
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/81472
推荐阅读
相关标签
  

闽ICP备14008679号