my_Circle= Circle(color='slategray')
second_Circle= Circle(width=50, height=50, color='palevioletred')
my_Text= Text('Hello friend', color=['khaki','lightgoldenrodyellow'])
import icons

with animation(duration=1):
    second_Circle.enlarge(2)
    my_Circle.enlarge(2)
    my_Text.enlarge(5);
with animation(duration=5):
    new_Truck=icons.Truck(width=10, height=10, x=50,y=51, color='crimson')
    my_Truck= icons.Truck(width=10, height=10, )
    new_Text= Text('HI', color='white', font_size=5, x=48)

hello friend

by deli

Created 5 years, 8 months ago.