-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathui-animate-example.py
54 lines (47 loc) · 1.33 KB
/
ui-animate-example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# https://forum.omz-software.com/topic/3504/lab-ui-animate-sliding-in-views/14
import ui
import animate
USE_ANIMATE = True
#USE_ANIMATE = False
def shrink(sender):
def a():
v.transform=ui.Transform.rotation(-30).concat(
ui.Transform.scale(0.1,0.1)).concat(ui.Transform.translation(300,300))
v.alpha=0
def compl(dummy=1):
v.hidden=True
b2.hidden=False
if USE_ANIMATE:
animate.animate(a,.5, completion=lambda dummy:compl(dummy))
else:
ui.animate(a,.5,completion=compl)
def expand(sender):
v.transform=ui.Transform.rotation(-30).concat(
ui.Transform.scale(0.1,0.1)).concat(ui.Transform.translation(300,300))
v.alpha=0.1
v.hidden=False
b2.hidden=True
def a():
v.transform=ui.Transform() #default
v.alpha=1
def compl(dummy=1):
pass
if USE_ANIMATE:
animate.animate(a,.3 ,completion=lambda dummy:compl(dummy))
else:
ui.animate(a,.3,completion=compl)
v=ui.View(bg_color='#ffc280',frame=(0,0,200,200))
v.add_subview(ui.TextView(name='text',frame=(20,40,60,40)))
v['text'].text='Click above'
root=ui.View(frame=(0,0,560,560),bg_color='white')
v.center=root.bounds.center()
b=ui.Button(frame=(0,0,50,50))
v.add_subview(b)
b.title='Shrink'
b.action=shrink
b2=ui.Button(title='expand',frame=(root.width,root.height,-100,-100))
b2.hidden=True
b2.action=expand
root.add_subview(b2)
root.present('sheet')
root.add_subview(v)