Raphaelist_vol18 (add)

Raphael de SVG ! vol18

by nekosmash

HTML

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

CSS

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

#canvas 
{
    height:100%;
    background:#aaa;
}

JavaScript

window.onload = function () {
    
    //create paper
    var paper = Raphael("canvas");
    paper.add([
    {
        type: "circle",
        cx: 40,
        cy: 40,
        r: 40,
        fill:"#fff",
        "stroke-dasharray":"-",
        "stroke-width":10
    },
    {
        type: "rect",
        x: 50,
        y: 50,
        width: 80,
        height: 80,
        r: 10,
        fill:"#FFF",
        "stroke-width":10
    }
    ]);
}