您好我正在开发一个需要使用 Raphael JS 和插件 Raphael.Freetransform 的新项目。到目前为止,该插件运行得非常好,非常顺利。但是,通过使用 hideHandles() 方法,它似乎也禁用了对对象的任何形式的拖动。
这是错误还是设计选择?隐藏句柄后是否需要重新启用对元素的拖动?我试过设置。为了在不使用 Freetransform 插件的情况下使元素可拖动,我需要做些什么特别的事情吗?
这是我的代码:
paper = new Raphael("container", "1680", "1005");
setA = paper.set();
circle = paper.circle(50, 50, 50);
circle.attr("fill", "#f00");
circle.attr("stroke", "#000");
notif = paper.circle(50, 50, 50);
notif.attr({ "fill": "r(0.5, 0.5) #fff-#f00", "fill-opacity": 1 });
lbl = paper.text(50, 50, "Label").attr({fill: '#000000'});
setA.push(circle);
setA.push(notif);
setA.push(lbl);
setA.click(function(){
console.log('clicked');
});
setA.hover(
// over //
function (){ console.log('over'); },
// out //
function (){ console.log('out'); }
);
setA.drag(
//onmove
function(){
console.log('object moving');
},
//onstart
function(){
console.log('start drag');
},
//onend
function(){
console.log('end drag');
}
);
ft = paper.freeTransform(setA, { drag: true, keepRatio: true, draw: [ 'bbox', 'circle' ] }, function(ft, events) { /*console.log(ft.attrs);*/ } );
$('#guideBtn').click(function(){
if ($('#guideBtn').text().indexOf('Show') > -1){ ft.showHandles(); $('#guideBtn').text('Hide Guide'); }
else{ ft.hideHandles(); $('#guideBtn').text('Show Guide'); }
});
这是 freetransform 工具的链接:https ://github.com/ElbertF/Raphael.FreeTransform/
如您所见,我只是使用按钮的单击处理程序来显示和隐藏句柄。在此之后我需要额外的步骤吗?
在此先感谢,康纳