Simple Content Rotation Plugin for jQuery - jqrotate

File Size: 3.68
Views Total: 1452
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Simple Content Rotation Plugin for jQuery - jqrotate

jqrotate is a jQuery plugin that allows you to rotate element of your page any number of degrees.

How to use(Create a DIV rotated by 30 degrees):

1. Include latest jQuery library and jqrotate.js in the header

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="jquery.rotate-1.0.1.min.js"></script>

2. Call the plugin with options

<script>
$(document).ready(function()
	{
		$('div.rotation').jqrotate(30);
	});
</script>

3. Markup

<div class="rotation">YOUR CONTENT</div>

This awesome jQuery plugin is developed by unknown. For more Advanced Usages, please check the demo page or visit the official website.