PyQt transparent timer
PyQt5 >= 5.8
python -m pip install git+https://github.com/yjg30737/pyqt-transparent-timer.git --upgrade
- pyqt-timer - Parent package
- pyqt-frameless-window(v0.0.61, Legacy)
- pyqt-resource-helper
- Press the escape button if you want to quit.
- If you want to know more about how to use this, see README of pyqt-timer
Code Sample
from PyQt5.QtWidgets import QApplication
from pyqt_transparent_timer import TransparentTimer
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
tm = TransparentTimer()
tm.show()
app.exec_()
Result
When mouse cursor is hovering over the widget, border and background will show up.
Except for graphics, this module operates the same way as pyqt-timer.