我想在 div 的中心创建 cricle。这是我的http://jsfiddle.net/uuAjV/3/
如果我将数量设置为 75,它将显示正确的圆圈位置,但如果我将变量数量更改为小于 75,则圆圈的位置从奇怪的地方开始。
这是我的代码
var amount = 75;
var archtype = Raphael("canvas", 500, 500);
archtype.customAttributes.arc = function (xloc, yloc, value, total, R) {
var alpha = 360 / total * value,
a = (90 - alpha) * Math.PI / 180,
x = xloc + R * Math.cos(a),
y = yloc - R * Math.sin(a),
path;
if (total == value) {
path = [
["M", xloc, yloc - R],
["A", R, R, 0, 1, 1, xloc - 0.01, yloc - R]
];
} else {
path = [
["M", xloc, yloc - R],
["A", R, R, 0, +(alpha > 180), 1, x, y]
];
}
return {
path: path
};
};
var my_arc = archtype.path().attr({
"stroke": "#f00",
"stroke-width": 2,
arc: [100, 100, amount, 100, 100]
}).rotate(180);
我试过改变:
["M", xloc, yloc - R],
至:
["M", 100, 200],
所以它会从底部 od div 开始,但它没有用
任何帮助如何解决它?我想让圆圈总是在 div 的中间。例如:如果金额设置为 25,这就是应该的样子。
提前致谢!