Click here to Skip to main content
15,867,330 members
Articles / Web Development / HTML
Article

Animation Mechanics in SVG: An Introduction

Rate me:
Please Sign up or sign in to vote.
4.64/5 (22 votes)
6 Sep 20034 min read 141.8K   482   46   24
This article is the first in a series on various aspects of SVG.

Note: this isn't an overly technical article and is more of a detailed introduction into the power of SVG and it's animation capabilities than anything else.

To get started with SVG, you'll first need to download this from Adobe.


Introduction

The easiest way to think of SVG is as a text (XML) - based Flash, but there's a lot more to it than that. SVG has been a W3C specification since September 4 2001 and it has started to get a lot of backing from the industry (viz: Corel, Adobe, Microsoft and well as a bunch of OSD applications) lately.

Currently, you'll need a plugin for your browser to view SVG files. When MS IE will natively support this standard is anyone's guess...

There are a couple of ways to package SVG files, with the primary ways being as a standalone file or embedded inside an HTML file using the <EMBED> tag. With SVG you can draw primitive shapes like circles, rectanges and lines as well as create complex animations based on time or triggered by events.

SVG primitives:

So, what elements are we going to be using in this article and what do they look like?

Circle:

XML
<circle cx="100" cy="100" r="25" fill="black" stroke="black" />


Rectangle:

XML
<rectangle x="100" y="100" width="50" height="50" fill="black" stroke="black" stroke-width="1"/>


SVG doesn't have a square element per se, but the <rectangle> is more than sufficient.

Text:

XML
<text x="100" y="100" font-size="20pt">The Code Project</text>



Line:

XML
<line x1="100" y1="100" x2="200" y2="100" />


The "1" and "2" type attributes are the start and end points.

Mapping out the animation:

Instead of doing some boring animation to show what SVG can do, we'll construct a fairly detailed interactive demo for Code Project.

With this in mind, let's review some of the ways that animation can work within SVG.

How animation works:

Here's a quick demo to get this section started.

Given the rectangle example, this SVG will initially render a small rectangle that will get larger and larger.

XML
<rect x="100" y="100" width="50" height="50" fill="black" stroke="black" 
   stroke-width="1">
  <animate attributeName="width" attributeType="XML" begin="0s" dur="4s" 
     fill="freeze" from="50" to="250" />
  <animate attributeName="height" attributeType="XML" begin="0s" dur="4s" 
     fill="freeze" from="50" to="250" />
</rect>


If you have a look through the code, you'll see how simple it really is.

The main thing to note is that the animation is declarative. It can take quite a lot of getting used to, but by nesting an <animate/> element inside a shape element you can start to create more and more complex animations without writing any code.

The last point here, is that the animations are accumulative. Further on, we'll see some examples of this.

As I said earlier on, animations can be started based on two things: time and events.  Here are some of the main events that you'll come across most often:

  • click
  • mouseover
  • mouseout
  • mousemove
  • begin (an important event of animation elements)
  • load (actual rendering of the element)

While the first four should be immediately obvious to most programmers, the last two probably require a brief explanation...

"begin" signifies that an animation has started. This can be useful when you need to string together various animations as only one animation needs to fire the "begin" event and the rest can be listening for that. A chain reaction of soughts.
Here's what I mean:

XML
<rect x="100" y="100" width="50" height="50" fill="black" stroke="black" 
             stroke-width="1" id="rect1">
    <animate attributeName="width" attributeType="XML" begin="4s" dur="4s" 
       fill="freeze" from="50" to="250" restart="whenNotActive" 
       id="firstAnimation" />
    <animate attributeName="height" attributeType="XML" 
       begin="firstAnimation.begin" dur="4s"
       fill="freeze" from="50" to="250" restart="whenNotActive" />
</rect>


"load" signifies that an element has been rendered onto the canvas. What actually seems to happen here, is the event fires when the element has been loaded into a memory-resident buffer and not necessarily when the actual paint has occured. If you test this by showing an alert box for this event, you'll see that the element has not yet appeared. Perhaps something to watch out for?

The two primary entities that can raise these begin and load events are: the various shape and animation elements respectively. With the animate elements typically being child elements of shapes.

We can modify the previous animation example to start based on a mouse over event, like this:

XML
<rect x="100" y="100" width="50" height="50" fill="black" stroke="black" 
  stroke-width="1" id="rect1">
    <animate attributeName="width" attributeType="XML" 
        begin="rect1.mouseover" dur="4s" 
        fill="freeze" from="50" to="250" restart="whenNotActive" />
    <animate attributeName="height" attributeType="XML" 
        begin="rect1.mouseover" dur="4s" 
        fill="freeze" from="50" to="250" restart="whenNotActive" />
</rect>


I've included a new attribute of the rectangle shape called "restart". All this does is stop the animation from restarting is if it still busy with the initial animation. Try and remove this and you'll see the animation go into a loop as the mouse over continually fires.

One of the massively useful features of SVG's animation events is that you can start an animation based on more than one event firing. For instance, we could have changed the begin attributes of the animation elements to:

XML
begin="rect1.mouseout;rect1.click".

Now, the "begin" attribute of this rectangle is listening for two events. I've changed the mouseover to a mouseout to better differentiate between the two examples.

You'll see a number of these more advanced software engineering features within the SVG spec.

To wrap up this intro article, here's an SVG file that demos some of the animation capabilities of SVG.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
South Africa South Africa
* Visual C# MVP 2004, 2005 - South Africa
* SADeveloper.NET User Group co-founder and lead 2003, 2004, 2005

MSN : simon_stewart AT hotmail.com
Email : simon AT brokenkeyboards.com
Skype: brokenkeyboards
CEO of Broken Keyboards Software



Founder of these startups:


Browse This For Me


Monitor My URL



My full CV can be download here in PDF format.

Comments and Discussions

 
GeneralAwesome... Pin
Rhodesie18-Sep-03 20:51
Rhodesie18-Sep-03 20:51 
GeneralRe: Awesome... Pin
SimonS19-Sep-03 8:11
SimonS19-Sep-03 8:11 
GeneralStep by step, please Pin
dcbrower9-Sep-03 3:03
dcbrower9-Sep-03 3:03 
GeneralRe: Step by step, please Pin
SimonS9-Sep-03 3:41
SimonS9-Sep-03 3:41 
GeneralRe: Step by step, please Pin
dcbrower9-Sep-03 4:30
dcbrower9-Sep-03 4:30 
GeneralRe: Step by step, please Pin
Philippe Lhoste6-Jul-04 23:25
Philippe Lhoste6-Jul-04 23:25 
GeneralSVG currently available in IE Pin
worldspawn7-Sep-03 16:30
worldspawn7-Sep-03 16:30 
GeneralRe: SVG currently available in IE Pin
SimonS7-Sep-03 20:37
SimonS7-Sep-03 20:37 
GeneralRe: SVG currently available in IE Pin
worldspawn7-Sep-03 20:43
worldspawn7-Sep-03 20:43 
GeneralRe: SVG currently available in IE Pin
SimonS9-Sep-03 0:09
SimonS9-Sep-03 0:09 
QuestionWant more? Pin
SimonS6-Jan-03 1:05
SimonS6-Jan-03 1:05 
Thanks to the ppl who've voted.

Is there interest in my writing a followup article, perhaps on rotations or something?

Cheers,
Simon

"The day I swan around in expensive suits is the day I hope someone puts a bullet in my head.", Chris Carter.

my svg article

AnswerRe: Want more? Pin
NormDroid11-Jan-03 1:01
professionalNormDroid11-Jan-03 1:01 
GeneralRe: Want more? Pin
SimonS28-Jan-03 22:34
SimonS28-Jan-03 22:34 
GeneralRe: Want more? Pin
robinAhood18-Mar-03 19:12
robinAhood18-Mar-03 19:12 
GeneralRe: Want more? Pin
dog_spawn7-Sep-03 5:28
dog_spawn7-Sep-03 5:28 
GeneralRe: Want more? Pin
SimonS7-Sep-03 20:39
SimonS7-Sep-03 20:39 
AnswerRe: Want more? Pin
Megan Forbes21-Jan-03 3:59
Megan Forbes21-Jan-03 3:59 
GeneralRe: Want more? Pin
SimonS21-Jan-03 21:02
SimonS21-Jan-03 21:02 
Answerrequest Pin
Member 45714929-Jun-03 22:21
Member 45714929-Jun-03 22:21 
GeneralRe: request Pin
SimonS30-Jun-03 8:00
SimonS30-Jun-03 8:00 
GeneralSuggestion Pin
Christian Graus18-Dec-02 21:40
protectorChristian Graus18-Dec-02 21:40 
GeneralRe: Suggestion Pin
SimonS18-Dec-02 21:47
SimonS18-Dec-02 21:47 
GeneralRe: Suggestion Pin
Christian Graus18-Dec-02 21:48
protectorChristian Graus18-Dec-02 21:48 
GeneralRe: Suggestion Pin
SimonS18-Dec-02 21:52
SimonS18-Dec-02 21:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.