我正在尝试用颜色填充圆的一部分。例如,有一个2/3红色和1/3为空的圆圈。
Raphael JS文档没有多大帮助。解决这个问题的最佳方式是什么?
下面的图片可以看到一些例子:
var paper = new Raphael(document.getElementById('shape_container'), 400, 100);
var circle = paper.circle(50, 50, 30);
circle.attr (
{
fill: '#F00'
}
);
使用上面的代码,我可以绘制一个充满红色的圆圈.. 我找不到任何方法来填充2/3红色..
答案 0 :(得分:4)
欢迎,Alperen。我相信你真正想要的是弧形路径而不是圆形。看看这个:
function arcpath( canvas, x, y, r, ratio )
{
if ( ratio >= 1.0 ) return canvas.circle( x, y, r );
var degrees = 360 * ratio; // we use this to determine whether to use the large-sweep-flag or not
var radians = ( Math.PI * 2 * ratio ) - Math.PI / 2; // this is actually the angle of the terminal point on the circle's circumference -- up is Math.PI / 2, so we need to subtract that out.
var pathparts =
[
"M" + x + "," + y,
"v" + ( 0 - r ),
"A" + r + "," + r + " " + degrees + " " + ( degrees >= 180 ? "1" : "0" ) + " 1 " + ( x + ( r * Math.cos( radians ) ) ) + "," + ( y + ( r * Math.sin( radians ) ) ),
"z"
];
return canvas.path( pathparts );
}
var partial_circle = arcpath( canvas, 250, 350, 100, 0.75 ).attr( { fill: mapit_red, stroke: mapit_black } );
arcpath函数中的几何结构相当简单(虽然我必须查找large-sweep-flag的引用,这显然是不明显的)。我确信这可以大大优化,但这是功能上的第一步。
答案 1 :(得分:3)
我为此目的写了一个RaphaelJS自定义属性。它可以是动画的,因此您可以控制切片的旋转/大小,也可以创建甜甜圈或部分甜甜圈形状。
paper.customAttributes.filledArc = function(e,t,n,r,i,s){var o=360;if(o==i){i-=.001}i+=s;var u=(90-s)*Math.PI/180,a=e+n*Math.cos(u),f=t-n*Math.sin(u),l=e+(n-r)*Math.cos(u),c=t-(n-r)*Math.sin(u);var h=(90-i)*Math.PI/180,p=e+n*Math.cos(h),d=t-n*Math.sin(h),v=e+(n-r)*Math.cos(h),m=t-(n-r)*Math.sin(h);return{path:[["M",l,c],["L",a,f],["A",n,n,0,+(i>180+s),1,p,d],["L",v,m],["A",n-r,n-r,1,+(i>180+s),0,l,c]]}}
然后:
paper.path().attr( {
filledArc: [x,y,radius,width,degrees,rotation]
fill: mapit_red,
stroke: mapit_black
} );