| | 72 | * Example usage: |
|---|
| | 73 | * |
|---|
| | 74 | * 100x50px black box that expands to 400x200px after 2 seconds using |
|---|
| | 75 | * the 'elasticOut' animation effect. |
|---|
| | 76 | * |
|---|
| | 77 | * <?php use_helper('YUIAnimation') ?> |
|---|
| | 78 | * ... |
|---|
| | 79 | * <div id="foo" style="background-color: #000000; height: 50px; width: 100px"></div> |
|---|
| | 80 | * <?php echo link_to('click me!', '#', array( |
|---|
| | 81 | * 'onclick' => yui_animation('elasticOut', 'foo', array( |
|---|
| | 82 | * 'from_height' => '50', |
|---|
| | 83 | * 'from_width' => '100', |
|---|
| | 84 | * 'to_height' => '200', |
|---|
| | 85 | * 'to_width' => '400', |
|---|
| | 86 | * 'duration' => '2', |
|---|
| | 87 | * )), |
|---|
| | 88 | * )) ?> |
|---|
| | 89 | * |
|---|