Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Language Bindings
  4. QWebView and CSS animations

QWebView and CSS animations

Scheduled Pinned Locked Moved Unsolved Language Bindings
python
2 Posts 2 Posters 1.1k 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.
  • B Offline
    B Offline
    borisruna
    wrote on last edited by A Former User
    #1

    Hello ! I am trying to display this : http://mapshakers.com/projects/leaflet-pulse-icon/ with QWebView .
    However with this code https://paste.pound-python.org/show/ZA0wUdUpndpa5Cb0AVpG/ there are no animations. Is there something I have to enable?
    Thanks in advance !

    1 Reply Last reply
    0
    • _antipattern__ Offline
      _antipattern__ Offline
      _antipattern_
      wrote on last edited by
      #2

      Hi,

      it looks like QtWebKit was superceded by QtWebEngine. Clicking together a quick sample shows the animations working for me without any more work required:

      import QtQuick 2.0
      import QtQuick.Window 2.0
      import QtWebEngine 1.0
      
      Window {
      	width: 1024
      	height: 768
      
      	WebEngineView {
      		anchors.fill: parent
      		url: "http://mapshakers.com/projects/leaflet-pulse-icon/"
      	}
      }
      

      Best

      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