Skip to content
/ IHL Public

ihover is a package for customtkinter and tkinter you can make a hover window with different parameters to improve your development skill i hope you guys enjoy

License

Notifications You must be signed in to change notification settings

Rexlep/IHL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

IHL (Interface Hover Library)

This is a package for tkinter or customtkinter widgets

Untitled-1

Installation

pip install IHL

Usage

import customtkinter as ctk
import tkinter as tk
from IHL.hover.option import Hover

root = ctk.CTk()
root.geometry('300x400')
root.title("IHL")

tk_btn = tk.Button(root, text="Hover Me", font=("Arial", 20))
tk_btn.pack(pady=40)

ctk_btn = ctk.CTkButton(root, text="Hover Me", font=("Arial", 20))
ctk_btn.pack()

Hover(tk_btn, "I am hover", duration=1, font=("Elephant", 12))
Hover(ctk_btn, "I am hover", duration=1)

root.mainloop()

Arguments

Parameter Description
fg text color of hover window
bg color of background
border_width width of the border frame
font set font and size for text
move_with_mouse movement of mouse(True or False)
duration change the create time of window

Tanks for visiting i hope it was helpful for you to increase your development skill :)

About

ihover is a package for customtkinter and tkinter you can make a hover window with different parameters to improve your development skill i hope you guys enjoy

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages