Rectangle(color="navy")
circle = Circle(width=5, height=5, color="midnightblue")
grow = 40
with animation(duration=2):
    circle.width = grow
    circle.height = grow
    circle.color = "navy"
    
circle = Circle(width=5, height=5, color="darkblue")
grow = 100
with animation(duration=2):
    circle.width = grow
    circle.height = grow
    circle.color = "navy"

Ripple Effect

by soa

Created 7 years, 6 months ago.
Based on Variable Example 5 by jamie.