QWebView and CSS animations
Unsolved
Language Bindings
-
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 ! -
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