Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. fade
    Log in to post

    • UNSOLVED QPropertyAnimations too big cpu usage for hover effects
      General and Desktop • qproperty effect fade effects css3 • • 0x1337  

      1
      0
      Votes
      1
      Posts
      506
      Views

      No one has replied

    • [SOLVED] Widget Fade In Effect Possible?
      General and Desktop • qt5.5 widget effect fade • • maximo  

      5
      0
      Votes
      5
      Posts
      3722
      Views

      @LuGRU Very cool! I finally was able to pull this off with my promoted widget, whereas other techniques didn't work unless I switched the effect to width/height animation. // w is my widget QGraphicsOpacityEffect *eff = new QGraphicsOpacityEffect(this); w->setGraphicsEffect(eff); QPropertyAnimation *a = new QPropertyAnimation(eff,"opacity"); a->setDuration(300); a->setStartValue(0); a->setEndValue(1); a->start(QPropertyAnimation::DeleteWhenStopped);
    • Fading out a QLabel
      Mobile and Embedded • qlabel fade • • McLion  

      13
      0
      Votes
      13
      Posts
      5161
      Views

      Further debugging shows that it works in my project on Windows but not when I compile for eLinux. Must be something that does not work with Qt 4.6.3 with DFB 1.4.3 and Fusion on eLinux.