Raphael22 (gif)

Raphael de SVG ! vol22

by totoe

HTML

<div id="canvas"></div>

CSS

body,html
{
    height:100%;
    margin:0;
}

#canvas 
{
    height:99%;
    background:#fff;
    text-align:center;
    padding-top:180px
}

JavaScript

window.onload = function () {
    
    var paper = Raphael(0, 0, "100%", "100%");
    paper.image("http://dl.dropbox.com/u/63305355/bouningen.gif",
                20,20,150,150);
    
};