KUMAMON

I make Kumamon.This is YuruCyara in Kumamoto-City.

by nekosmash

HTML

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

CSS

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

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

JavaScript

window.onresize = function(){
    paper.setSize(document.documentElement.clientWidth,document.documentElement.clientHeight);
}

window.onload = function () {
    
    var paper = Raphael("canvas", document.documentElement.clientWidth, document.documentElement.clientHeight-20);
    //paper.circle(0, 0, 500).attr({ fill: "#888" });
    var st = paper.set();
    st.push(
        paper.circle(100, 10, 50),
        paper.circle(30, 10, 50)
    );
    st.attr({fill: "red"});

}