Raphaelist_vol15

Raphael de SVG ! vol15

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");
    

    //紫の線
    // path = paper.path("M200,100 C200,200 300,100 350,200Z");
    path = paper.path("M200,100 L200,200, 200Z");
    path.attr({
        "stroke":"#908",
        "stroke-width":"10",
        "stroke-linejoin":"miter"
    });
 
 
}