Skip to content

yjg30737/pyqt-animated-svg-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyqt_animated_svg_example

PyQt animated SVG example

Requirements

  • PyQt5 >= 5.8

Setup

python -m pip install git+https://github.com/yjg30737/pyqt-animated-svg-example.git --upgrade

Tutorial (how to make this by myself)

See the post

Example

import sys

from PyQt5.QtWidgets import QApplication
from pyqt_animated_svg_example import AnimatedSvgExample


if __name__ == "__main__":
    app = QApplication(sys.argv)
    r = AnimatedSvgExample()
    r.show()
    sys.exit(app.exec_())

Result

pyqt_animated_svg_example.mp4

Note: I will use this to something useful later.