All right reserved.
mobily.pl - marcin dziewulski © 2009 - 2012

Check out the new website with fresh and new jQuery plugins and tutorials!
Visit jscraft.net

MobilyBlocks

Posted by: Marcin Dziewulski on 12.12.10

jQuery plugin (2KB) that allows you to create an unordered list as an animated circle.

Changelog:

25.1.2011 - fixes for hover event, added direction option (clockwise or counter-clockwise)
8.1.2011 - added hover trigger
13.12.2010 - fixes for click event

JavaScript:

$('.blocks').mobilyblocks({
	trigger: 'click', // click or hover
	direction: 'clockwise', // clockwise or counter
	duration: 500, // duration of animation
	zIndex: 50, // z-index value of 'li' elements
	widthMultiplier: 1.15
});

HTML:

<div class="blocks">
	<ul class="reset">
		<li> .. </li>
		<li> .. </li>
		<li> .. </li>
		<!-- etc. -->
	</ul>			
</div>	

CSS:

.blocks {
	display:block;
	width:;
	height:; /* you need to specify width and height values */
	position:relative;
	cursor:pointer;
}

ul.reset,
ul.reset li {
	display:block;
	list-style:none;
	padding:0;
	margin:0;
}

ul.reset li {
	position:absolute;
}

Comments:

Katherine Hague

27.08.11, 23:53
Love this. But was wondering what browsers it is supported in?

Santhosh

26.08.11, 12:32
Simply Superb :)

Andrea

28.07.11, 14:33
Hi,
very very nice plug. I try this with drag and drop plugin jquery UI. Is possible add a trigger \"drop\" for you?
Thank you very much :)

jack

22.07.11, 13:51
It\'s amazing plugin I ever know :))
Good Job

Bernard TALLENT

07.05.11, 15:55
Very, very, very nice plugin !
I use it on my site web : http://www.systemesolaire.net
Thank you.

Marc Alexander

01.05.11, 11:03
Is it possible to do a remote trigger for the menu? Click on another link and then the menu opens?

Thanks,
Marc

Alex

29.03.11, 14:40
Superb! It kicks ....
One question:
Is it possible to trigger the action on page load?

Jim Browski

24.03.11, 11:50
Nice plugin!

One (js n00b) question: Is there a way to 'close' the circle if one of the links in the unordered list is klicked?

e11world

02.03.11, 19:48
Pretty sweet plugin!

Abdulhakim Haliru

27.02.11, 11:46
nice piece of plugin. :)

Write a Comment

If you have trouble reading the code, click on the code itself to generate a new random code.

Options