python tkinter實現(xiàn)屏保程序
更新時間:2019年07月30日 09:35:24 作者:wjcaiyf
這篇文章主要為大家詳細介紹了python tkinter實現(xiàn)屏保程序,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了python tkinter實現(xiàn)屏保程序的具體代碼,供大家參考,具體內(nèi)容如下
該腳本摘錄自:2014年辛星tkinter教程第二版
#!/usr/bin/env python
from Tkinter import *
from random import randint
class RandomBall(object):
def __init__(self, canvas, screenwidth, screenheight):
self.canvas = canvas
self.xpos = randint(10, int(screenwidth))
self.ypos = randint(10, int(screenheight))
self.xspeed = randint(6, 12)
self.yspeed = randint(6, 12)
self.screenwidth = screenwidth
self.screenheight = screenheight
self.radius = randint(40, 70)
color = lambda : randint(0, 255)
self.color = '#%02x%02x%02x' % (color(), color(), color())
def create_ball(self):
x1 = self.xpos - self.radius
y1 = self.ypos - self.radius
x2 = self.xpos + self.radius
y2 = self.ypos + self.radius
self.itm = self.canvas.create_oval(x1, y1, x2, y2, fill=self.color,
outline=self.color)
def move_ball(self):
self.xpos += self.xspeed
self.ypos += self.yspeed
if self.ypos >= self.screenheight - self.radius:
self.yspeed = -self.yspeed
if self.ypos <= self.radius:
self.yspeed = abs(self.yspeed)
if self.xpos >= self.screenwidth - self.radius or self.xpos <= self.radius:
self.xspeed = -self.xspeed
self.canvas.move(self.itm, self.xspeed, self.yspeed)
class ScreenSaver:
def __init__(self, num_balls):
self.balls = []
self.root = Tk()
w, h = self.root.winfo_screenwidth(), self.root.winfo_screenheight()
self.root.overrideredirect(1)
self.root.attributes('-alpha', 0.3)
self.root.bind('<Key>', self.myquit)
self.root.bind('<Motion>', self.myquit)
self.canvas = Canvas(self.root, width=w, height=h)
self.canvas.pack()
for i in range(num_balls):
ball = RandomBall(self.canvas, screenwidth=w, screenheight=h)
ball.create_ball()
self.balls.append(ball)
self.run_screen_saver()
self.root.mainloop()
def run_screen_saver(self):
for ball in self.balls:
ball.move_ball()
self.canvas.after(50, self.run_screen_saver)
def myquit(self, event):
self.root.destroy()
if __name__ == "__main__":
ScreenSaver(18)
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python 之pandas庫的安裝及庫安裝方法小結(jié)
Pandas 是一種開源的、易于使用的數(shù)據(jù)結(jié)構(gòu)和Python編程語言的數(shù)據(jù)分析工具,它與 Scikit-learn 兩個模塊幾乎提供了數(shù)據(jù)科學(xué)家所需的全部工具,今天通過本文給大家介紹Python 之pandas庫的安裝及庫安裝方法小結(jié),感興趣的朋友跟隨小編一起看看吧2022-11-11
使用Python和GDAL給圖片加坐標系的實現(xiàn)思路(坐標投影轉(zhuǎn)換)
這篇文章主要介紹了使用Python和GDAL給圖片加坐標系的實現(xiàn)思路(坐標投影轉(zhuǎn)換),本文給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-03-03
Python使用cx_Oracle模塊操作Oracle數(shù)據(jù)庫詳解
這篇文章主要介紹了Python使用cx_Oracle模塊操作Oracle數(shù)據(jù)庫,結(jié)合實例形式較為詳細的分析了cx_Oracle模塊的下載、安裝及針對Oracle數(shù)據(jù)庫的連接、執(zhí)行SQL語句、存儲過程等相關(guān)操作技巧,需要的朋友可以參考下2018-05-05

