我想在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,应该如何看待。
提前致谢!
答案 0 :(得分:1)
我怀疑你想要达到的目标可以通过改变旋转旋转(180,100,100)来获得,这样你就可以围绕中心而不是其他点旋转。即。
var my_arc = archtype.path().attr({
"stroke": "#f00",
"stroke-width": 2,
arc: [100, 100, amount, 100, 100]
}).rotate(180, 100, 100);