0

我一直在寻找很长一段时间是否有任何教程显示拉斐尔自由变换图像?下面的代码是我尝试过但不起作用的。

<div id="canvas">
<img src="img/product/tmp/202/1.jpeg">
<img src="img/product/tmp/202/2.jpeg">
</div>

var paper = Raphael($("#canvas"));
var img = $('#canvas').children('img').eq(0);
var ft = paper.freeTransform(img);
ft.showHandles();

http://jsfiddle.net/DZc8f/1/

4

1 回答 1

1
Raphael.fn.freeTransform = function(subject, options, callback) {
   ----
-------

}

这是演示

于 2013-03-23T10:47:16.397 回答