0

Imagine having a set of light rays surrounding a circle - just like the sun. What I want to do is reveil the rays, so the appear to be "rising" from the sun.

In Flash I would be able to create a nice effect for this by doing something like the following steps: - Divide the rays into x amount of groups (symbols) - Create a circle mask that will scale up "grow" to reveil the rays - Run the circle mask with 0.3 delay on each of the x amount of groups

I figured that I could emulate something similar with the CSS clip property, but that only works with rectangles?

Any suggestions on how this could be achieved?

MaxArt
  • 22,200
  • 10
  • 82
  • 81
user1231561
  • 3,239
  • 6
  • 36
  • 55

1 Answers1

0

A rectangle (square) with border-radius (exceeding 1/2 of its width) perhaps?

Jimmy
  • 1
  • As far as I understanding the clipping property is CSS based and can only be defined as hiding/revealing in rectangular form? So setting the border-radius on the element to something circular wouldn't do anything - but a good suggestion none the less – user1231561 Nov 17 '13 at 21:44