import icons
background = Rectangle(color="orange")
background = Text("Halloween")
spider = icons.Spider(color="black", width=15, height=15)
grow = 35
with animation(duration=2):
    spider.x = 90
    spider.color = 'grey'
with animation(duration=0.5):
    pass
    
with animation(duration=1):
    spider.y = 90
    spider.color = 'black'
    spider.width = grow
    spider.height = grow

halloween_spider

by daria

Created 3 years, 5 months ago.