Skip to content

Adds a small handle to an HTML element to allow it to be rotated

Notifications You must be signed in to change notification settings

brilnius/jquery-ui-rotatable

 
 

Repository files navigation

jquery-ui-rotatable is a plugin for jQuery UI that works in a similar way to Draggable and Resizable, without being as full-featured (please fork and send me pull requests!). By default, it puts a small rotation icon in the bottom left of whatever element you want to make rotatable.

####CDN

<link rel="stylesheet" href="//cdn.jsdelivr.net/jquery.ui.rotatable/1.0.1/jquery.ui.rotatable.css">
<script src="//cdn.jsdelivr.net/jquery.ui.rotatable/1.0.1/jquery.ui.rotatable.min.js"></script>

Usage

Somewhere in your HTML ...

<!-- prerequisites -->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<script src="jquery.ui.rotatable.js"></script>
<!-- this is small and will allow you to override look/feel of handle -->
<link rel="stylesheet" href="jquery.ui.rotatable.css">

<script type="text/javascript">
    $(document).ready(function() {
        var params = {
            // Callback fired on rotation start.
            start: function(event, ui) {
            },
            // Callback fired during rotation.
            rotate: function(event, ui) {
            },
            // Callback fired on rotation end.
            stop: function(event, ui) {
            },
            // Set the rotation center at (25%, 75%).
            rotationCenterX: 25.0, 
            rotationCenterY: 75.0
        };
        $('#target').rotatable(params);
    });
</script>

<div id="target">Rotate me!</div>

Options that can be set when you call .rotatable() are:

  • handle: url to a custom image for the handle
  • angle: the starting rotation for the element (default 0 degrees)
  • rotationCenterX, rotationCenterY: position about which the element will be rotated
  • step: an angle in degrees that the rotation will snap to if the shift key is held (default 22.5)
  • snap: snaps to step in degrees (default: false)
  • start, stop, rotate: callbacks when those events occur
  • wheelRotate: enable/disable mouse wheel to rotate element (default: true)

The start, rotate and stop callbacks provide the following in the ui argument of the callback:

  • element: The jQuery element being rotated.
  • angle: An object containing information about the rotation angle, with the following keys:
    • start: The angle at the begining of the rotation.
    • current: The current angle of the rotation.
    • stop: The angle at the end of the rotation.

Note that you should define a height and width for anything that you make rotatable, as the rotation happens around the center point of the element, and when you don't define these things, it could look and feel a little a strange. Alternatively, specify the center of rotation as mentioned earlier.

You can also combine this plugin with the jQuery UI built-in resizable() and draggable(), although the latter works best when applied to a container with the rotatable inside it. See the Demo page for some examples.

You can disable/enable the rotation using $('#target').rotatable('enable'); and $('#target').rotatable('disable');.

Hovering over an element and rotating the scrollwheel (or equivalent) will cause the element to rotate.

Demo

A simple demo is in the source code, but can be visited here.

Thanks

Many thanks to those of you who have reported issues and helped me diagnose and fix them! Also, thank you to all the contributors who have sent pull requests and put up with my laziness :-)

License

Released under the MIT license, like jQuery.

About

Adds a small handle to an HTML element to allow it to be rotated

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 100.0%