2
Is it possible using RaphaelJS ? 我的意思是隻是2D部分。用RaphaelJS調整形狀尺寸
我認爲唯一的方法是按比例重寫所有路徑,然後調整它們的大小以適合我的畫布容器。
Is it possible using RaphaelJS ? 我的意思是隻是2D部分。用RaphaelJS調整形狀尺寸
我認爲唯一的方法是按比例重寫所有路徑,然後調整它們的大小以適合我的畫布容器。
var c = paper.circle(10, 10, 10);
// makes the circle 1.5 times larger
c.scale(1.5, 1.5);
// makes the circle half as wide, and 75% as high
c.scale(.5, .75);
對不起,如果我不清楚。但我想與路徑一起工作 – coffee 2011-06-16 20:59:44
圓形是一條爲您創建的路徑。檢查Raphael的來源。 – 2011-06-17 15:02:53