Arrow
ArrowAug. 29, 2018, 9:55 a.m.

Анимация элементов в QML

Animation, QML

Добрый день!

Пытаюсь сделать анимацию прямоугольника (служит стилизированой кнопкой) при нажатии на него мышкой.
Все отображается корректно, клик по MouseArea отрабатывает, только анимации не происходит.
Сделал по примеру из документации.

Вот код файла MenuButton.qml:
import QtQuick 2.10

Item {
    property string itemText: "Text"
    property int fontSize: 18
    property int itemHeight: 40
    property int itemWidth: 100

    height: itemHeight
    width: itemWidth

    Rectangle {
        id: rect
        anchors.fill: parent
        color: "#0b1160"
        gradient: Gradient {
            GradientStop {
                position: 0.47
                color: "#0b1160"
            }
            GradientStop {
                position: 1.00
                color: "#ffffff"
            }
        }
        border.color: "#1313af"
        border.width: 1

        Text {
            anchors.centerIn: rect
            text: itemText
            font.pixelSize: fontSize
            color: "white"
        }

        states: State {
            name: "clicked"
            when: mouseArea.pressed
            PropertyChanges { target: rect; x: 50; y: 50 }
        }

        transitions: Transition {
           NumberAnimation { properties: "x,y"; easing.type: Easing.InOutQuad }
        }

        MouseArea {
            id: mouseArea
            anchors.fill: rect
            onClicked: console.log(itemText)
        }
    }
}

Код main.qml:
import QtQuick 2.10
import QtQuick.Window 2.10

Window {
    id: root
    visible: true
    width: Screen.width-500
    height: Screen.height-300
    title: qsTr("Test")

    Image {
        source: "qrc:/pict/background.jpg"
        anchors.fill: parent
    }

    Row {
        x: 0
        y: 0
        width: root.width
        spacing: 2

        MenuButton {
            id: optimizeBtn
            itemText: qsTr("Меню 1")
            itemWidth: parent.width/5 - parent.spacing
        }

        MenuButton {
            id: quickBtn
            itemText: qsTr("Меню 2")
            itemWidth: parent.width/5 - parent.spacing
        }

        MenuButton {
            id: protectionBtn
            itemText: qsTr("Меню 3")
            itemWidth: parent.width/5 - parent.spacing
        }

        MenuButton {
            id: toollBtn
            itemText: qsTr("Меню 4")
            itemWidth: parent.width/5 - parent.spacing
        }

        MenuButton {
            id: actionsBtn
            itemText: qsTr("Меню 5")
            itemWidth: parent.width/5 - parent.spacing
        }
    }
}
We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

5
Evgenii Legotckoi
  • Sept. 1, 2018, 3:49 a.m.

Добрый день!

У меня сейчас нет под рукой компьютера, чтобы проверить, как это должно работать, но есть подозрение, что вам нужно описать два состояния в свойстве states. И если не ошибаюсь, то в качестве states идёт array этих состояний
    Arrow
    • Sept. 3, 2018, 7:30 a.m.
    • The answer was marked as a solution.
    Спасибо за помощь!
    Да необходимо было описать два состояния и запускается анимация немного по другому.
    SequentialAnimation {
                id: anim
                NumberAnimation {
                    target: rect
                    properties: "opacity"
                    from: startOpacity
                    to: 0.4
                    duration: 80
                }
    
    NumberAnimation { target: rect properties: "opacity" from: 0.4 to: 0.8 duration: 80 } } ......................
    anim.running = true // Запуск анимации

    Рабочий вариант:

    import QtQuick 2.10
    
    Item {
        property string itemText: "Text"
        property int fontSize: 18
        property int itemHeight: 40
        property int itemWidth: 100
    
        signal mouseClick
    
        height: itemHeight
        width: itemWidth
    
        Rectangle {
            id: rect
            anchors.fill: parent
            color: "#0b1160"
            gradient: Gradient {
                GradientStop {
                    position: 0.47
                    color: "#0b1160"
                }
                GradientStop {
                    position: 1.00
                    color: "#ffffff"
                }
            }
            border.color: "#1313af"
            border.width: 1
    
            Text {
                anchors.centerIn: rect
                text: itemText
                font.pixelSize: fontSize
                color: "white"
            }
    
            SequentialAnimation {
                id: anim
                NumberAnimation {
                    target: rect
                    properties: "opacity"
                    from: 1.0
                    to: 0.6
                    duration: 80
                }
    
                NumberAnimation {
                    target: rect
                    properties: "opacity"
                    from: 0.6
                    to: 1.0
                    duration: 80
                }
            }
            
            MouseArea {
                anchors.fill: parent
                hoverEnabled: true
                cursorShape: containsMouse ? Qt.PointingHandCursor : Qt.ArrowCursor
                onClicked: {
                    anim.running = true
                    mouseClick()
                }
            }
        }
    }
    
      Arrow
      • Sept. 3, 2018, 7:37 a.m.
      • (edited)
      И такой вопрос не по теме:
      Убрал системное обрамление у окна:
      import QtQuick 2.10
      import QtQuick.Window 2.10
      
      Window {
          id: root
          visible: true
          width: Screen.width-500
          height: Screen.height-300
          minimumWidth: 1250
          minimumHeight: 750
          flags: Qt.FramelessWindowHint
      
          property int previousX
          property int previousY
      
          Image { // Фон
              source: "qrc:/pict/background.jpg"
              anchors.fill: parent
          }
      
      ..................................................................
      /* Описание перетаскивания и изменение размеров окна */
      ..................................................................
      }
      и теперь в Windows 7 запущенное приложение не отображается на панели задач. В Debian Linux все в порядке.
      Реализацию изменения размеров окна и его перетаскивания делал по Вашему уроку (Спасибо!).
      Это глюк или я что-то не то сделал?
        Evgenii Legotckoi
        • Sept. 5, 2018, 3:51 a.m.
        • (edited)

        Там за иконку таскбара отвечает какой-то из флагов. Когда вы отключаете обрамление, вы перезаписываете все флаги которые там существуют, оставляя только флаг отключения обрамления. Видимо под линуксом это работает иначе, чем под виндовс. Нужно либо найти этот флаг, почитать документацию внимательно, либо сохранить все предыдущие флаги и добавить в них флаг отключения обрамления. Мне было лень читать документацию, поэтому я пошёл вторым путём :D

        import QtQuick 2.10
        import QtQuick.Window 2.10
        
        Window {
            id: root
            visible: true
            width: Screen.width-500
            height: Screen.height-300
            minimumWidth: 1250
            minimumHeight: 750
            flags: root.flags |  Qt.FramelessWindowHint
        }
          Arrow
          • Sept. 5, 2018, 4:34 a.m.
          Спасибо!
          Покопался и нашел такое:
          flags: Qt.FramelessWindowHint | Qt.Window

            Comments

            Only authorized users can post comments.
            Please, Log in or Sign up
            AD

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:50points,
            • Rating points-4
            m

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:80points,
            • Rating points4
            m

            C ++ - Test 004. Pointers, Arrays and Loops

            • Result:20points,
            • Rating points-10
            Last comments
            i
            innorwallNov. 15, 2024, 7:27 a.m.
            Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
            i
            innorwallNov. 15, 2024, 2:26 a.m.
            Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
            i
            innorwallNov. 15, 2024, 12:03 a.m.
            Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
            i
            innorwallNov. 14, 2024, 5:07 p.m.
            Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
            i
            innorwallNov. 14, 2024, 4:42 p.m.
            How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
            Now discuss on the forum
            i
            innorwallNov. 14, 2024, 8:39 a.m.
            добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
            i
            innorwallNov. 11, 2024, 3:55 p.m.
            Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
            9
            9AnonimOct. 25, 2024, 2:10 p.m.
            Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

            Follow us in social networks