Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. [SOLVED] CoverFlow 3D Like with PathView
Qt 6.11 is out! See what's new in the release blog

[SOLVED] CoverFlow 3D Like with PathView

Scheduled Pinned Locked Moved QML and Qt Quick
5 Posts 4 Posters 8.3k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Q Offline
    Q Offline
    qtnext
    wrote on last edited by
    #1

    Hi,

    I need to do a coverflow 3D in qml. PathView is quite good but how can I the fake rotation in 2.5 in QML. Is it possible to use QTransform in QML ?

    1 Reply Last reply
    0
    • Z Offline
      Z Offline
      ZapB
      wrote on last edited by
      #2

      Yes you should be able to do something like this within your delegate that shows the items in your model on your PathView:

      @
      Image {
      source: "pics/qt.png"
      transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: 72 }
      smooth: true
      }
      @

      So you just use the "transform" property and set it to a suitable Rotation item. See the docs for "Rotation":http://doc.qt.nokia.com/latest/qml-rotation.html for more details.

      Nokia Certified Qt Specialist
      Interested in hearing about Qt related work

      1 Reply Last reply
      0
      • P Offline
        P Offline
        parancibia
        wrote on last edited by
        #3

        Check the "code":https://projects.forum.nokia.com/planningpoker/browser/qml/symbian/PlanningPoker/DeckView.qml of the "QML Planning Poker":https://projects.forum.nokia.com/planningpoker/wiki sample on Forum Nokia

        !http://realnorth.net/share/Scr000003.jpg(QML Planning Poker)!

        1 Reply Last reply
        0
        • Q Offline
          Q Offline
          qtnext
          wrote on last edited by
          #4

          thanks a lot ... i will try this ..

          1 Reply Last reply
          0
          • J Offline
            J Offline
            jech
            wrote on last edited by
            #5

            Hi,

            I would like to implement something like this. I checked the code but there are some components (DeckModel, Card etc.) missing and I can't find them.

            I would be interested in a standalone version of this Cover Flow component so I can explore it and modify to my needs.

            Thanks a lot!

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved