Skip to content

yjg30737/pyqt-transparent-timer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyqt-transparent-timer

PyQt transparent timer

Requirements

PyQt5 >= 5.8

Setup

python -m pip install git+https://github.com/yjg30737/pyqt-transparent-timer.git --upgrade

Included Packages

Usage

  • 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

Example

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

image

When mouse cursor is hovering over the widget, border and background will show up.

image

Except for graphics, this module operates the same way as pyqt-timer.

See also