Free transform tool for Raphaël 2.0 elements and sets with many options. Supports snap-to-grid dragging, scaling and rotating with a specified interval and range.
Licensed under the MIT license.
http://alias.io/raphael/free_transform/
<script type="text/javascript" src="raphael-min.js"></script>
<script type="text/javascript" src="raphael.free_transform.js"></script>
<div id="holder" style="height: 100%;"></div>
<script type="text/javascript">
var paper = Raphael(0, 0, 500, 500);
var rect = paper
.rect(200, 200, 100, 100)
.attr('fill', '#f00')
;
// Add freeTransform
var ft = paper.freeTransform(rect);
// Hide freeTransform handles
ft.hideHandles();
// Show hidden freeTransform handles
ft.showHandles();
// Apply transformations programmatically
ft.attrs.rotate = 45;
ft.apply();
// Remove freeTransform completely
ft.unplug();
// Add freeTransform with options and callback
ft = paper.freeTransform(rect, { keepRatio: true }, function(ft, events) {
console.log(ft.attrs);
});
// Change options on the fly
ft.setOpts({ keepRatio: false });
</script>
Animate transformations. Works best in combination with apply()
(see the functions section below).
Default: { delay: 700, easing: 'linear' }
Sets the attributes of the handles.
Default: { fill: '#fff', stroke: '#000' }
Limits the drag area of the handles.
Default: dimensions of the paper
Sets the distance of the handles from the center of the element (num
times radius).
Default: 1.3
Enables/disables dragging.
Default: [ 'center', 'self' ]
Additional elements to draw.
Default: false
Scale axes together or individually.
Default: false
Limit the range of transformation.
Default: { rotate: [ -180, 180 ], scale: [ 0, 99999 ] }
Enables/disables rotating.
Default: [ 'axisX', 'axisY' ]
Enables/disables scaling.
Default: [ 'axisX', 'axisY', 'bboxCorners', 'bboxSides' ]
Snap transformations to num degrees (rotate) or pixels (scale, drag).
Default: { rotate: 0, scale: 0, drag: 0 }
Snap distance in degrees (rotate) or pixels (scale, drag).
Default: { rotate: 0, scale: 0, drag: 7 }
Sets the radius of the handles in pixels.
Default: 5
A callback function can be specified to capture changes and events.
Programmatically apply transformations (see the example above).
Removes handles but keeps values set by the plugin in memory.
Shows handles hidden with hideHandles()
.
Update options and callback.
Removes handles and deletes all values set by the plugin.
Updates handles to reflect the element's transformations.
Instructions on how to use Raphaël.FreeTransform ain combination with Raphaël.JSON can be found here.