如何使用raphael和raphael free转换插件与图像?

时间:2013-03-23 10:41:03

标签: jquery raphael

我已经搜索了很长时间有没有教程显示raphael free转换图像? 下面的代码是我尝试但不起作用。

<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/

1 个答案:

答案 0 :(得分:1)

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

}

Here is the DEMO