gorskaja2019

Untitled

Apr 17th, 2019
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. from tkinter import Canvas, Tk
  2.  
  3. root = Tk()
  4.  
  5. canvas_w = 800# ширина холста
  6. canvas_h = 400# высота холста
  7. c = Canvas(width = canvas_w, height = canvas_h, bg = 'deepskyblue')
  8. c.create_rectangle(0, canvas_h // 2, canvas_w, canvas_h, fill = 'green', width = 0)
  9. c.pack()
  10. #создали корзину
  11. catch = c.create_rectangle(canvas_w//2 - 40, canvas_h - 100, canvas_w//2+40, canvas_h - 80, fill = 'orange', width = 2)
  12. #движение корзины
  13.  
  14. def move_left(event):
  15. c.move(catch, -20, 0)
  16. def move_right(event):
  17. c.move(catch, 20, 0)
  18.  
  19. c.bind('<Left>', move_left)
  20. c.bind('<Right>', move_right)
  21. c.focus_set()
  22.  
  23. root.mainloop()
Add Comment
Please, Sign In to add comment