我正在使用Raphael和JSON:
AvGen.svg1 = [0,0,255.3,298.5,
{type:'path',
path:'M 35.3 257.2 C 34.4 245.7 45.4 234.1 48.5 223 C 53.6 249.2',
'fill':AvGen.bodyColor,
'stroke':'none',
'stroke-width':'0',
'fill-opacity':'1',
'stroke-opacity':'0'}];
我想要的是将路径放在Raphael对象内的特定位置以及改变大小。
不幸的是Raphael的文档非常糟糕,我只是想不通怎么做?
提前致谢!
答案 0 :(得分:1)
您熟悉Element.transform()
method吗?处理它可能有点棘手,但它可以为您扩展和翻译。
根据您提供的对象,您需要这样的内容。 (我随意为填充颜色选择了深红色,因为这是代码中的变量,并为演示目的更改了框的坐标。)
var svg = [10,30,255.3,298.5,
{type:'path',
path:'M 35.3 257.2 C 34.4 245.7 45.4 234.1 48.5 223 C 53.6 249.2',
'fill':"#900",
'stroke':'none',
'stroke-width':'0',
'fill-opacity':'1',
'stroke-opacity':'0'}];
var paper = Raphael(0, 0, 500, 500);
var frame = paper.rect(svg[0], svg[1], svg[2], svg[3]);
var line = paper.path();
for (var prop in svg[4]) if (svg[4].hasOwnProperty(prop)) {
// if the key is a valid Raphael attribute, add it
if (Raphael._availableAttrs.hasOwnProperty(prop)) {
line.attr(prop, svg[4][prop]);
}
}
然后你可以编写一个函数来相对于框移动形状,然后缩放它:
function moveShapeTo(box, shape, x, y, s) {
console.log(shape.getBBox());
//current upper-left corner of shape's bounding box
var shape_xy = { x: shape.getBBox().x, y: shape.getBBox().y };
// target location (coordinates relative to parent box)
var target_xy = { x: box.getBBox().x + x, y: box.getBBox().y + y };
// how much to move the shape
var offset = {
x: target_xy.x - shape_xy.x,
y: target_xy.y - shape_xy.y
}
shape.transform("T" + offset.x + "," + offset.y + " S" + s + "," + s + " " + target_xy.x + "," + target_xy.y);
}
moveShapeTo(box, line, 30, 50, 4);
请记住,您为此函数指定的坐标指的是形状边界框的左上角。