Can anyone recommend how I might be able to create a view transition that looks like a circle expanding from the center of the view?
Any pointers would be helpful, or maybe a link to some similar code, even in a different language.
|
Can anyone recommend how I might be able to create a view transition that looks like a circle expanding from the center of the view? Any pointers would be helpful, or maybe a link to some similar code, even in a different language. |
||||
|
|
|
If you want to do that for images.. then you could use a mask and then make it bigger Here is how you do it for images
|
|||
|
|
|
Perhaps fill the screen with black, and then remove the black using a The smoothness of the animation would be controlled by how much the size of the Rect (which the Ellipse is then created inside of) increases every x amount of time. The speed of the animation would be controlled by how often you increase the size of the rect. Check out CoreGraphics if you haven't already. It's pretty powerful. |
|||
|
|