Simple Lava Lamp Menu Tutorial with jQuery

Default/Naked version
Demonstration
Styled with skyblue version
Demonstration
Download
Download

Introduction

Lava Lamp Menu is one of the favourite menu that has been using by some websites. It has a jQuery plugin for it, we're not reinventing the wheel, but it will be good to know how it works, how to customize it and make a unique one.

I've break it into different sections (html, css and javascript), in depth explanations with text, illustrations and two examples - a naked version and a styled version. Before we start you need jQuery easing for animated transition. and in that website, it has whole list of transition, and you can use any of them in this lava lamp menu tutorial! :)

  • make a rounded corner menu item for floating box.
  • A floating box following the menu item when you mouse over it
  • and the floating box should back to where it was when you mouse is out of the menu
  • elastic animated effect when the floating box moving around
  • floating box will stay in the menu item that you've clicked on it

Also, feel free to browse around my website, I have written huge amount of practical jQuery tutorials for frontend web design and development. :) Right, let's get it started.

1. HTML

In HTML section, I always want to keep it nice and clean, well, at least easy to understand. It's recommended to use UL list for menu. In this Lava menu tutorial, we will need some extra html elements after the list to make the floating bubble. Also, you need to set the default selected item, This is how the HTML looks like:

<div id="lava">

	<ul>
		<li><a href="#">home</a></li>
		<li><a href="#">lava lamp menu</a></li>
		<li><a href="#">queness.com</a></li>
		<li class="selected"><a href="#">jQuery</a></li>			
	</ul>

	<!-- If you want to make it even simpler, you can append these html using jQuery -->
	<div id="box"><div class="head"></div></div>

</div>

2. CSS

When you want to make some animation, position absolute and relative are the key thing. If we want to set the absolute position within a container, we need to make sure the parent item is set to position relative, otherwise, the children item will be positioned according to the window screen. Of course, z-index can only work if position absolute is defined. Now, please refer to the image below, it's basically the idea of lava lamp menu.

lava menu structure

For the floating #box, if you want to style it up with rounded corner, this is how to do it. You need to draw the box, make it long, and then slice it out, so you have two pieces of images, head and tail. Tail image is set as the background of #box and position it to right hand side of #box. And head image need to set it as the background for head class, and extra padding (width of the tail) to make sure the tail is not covered by the head image.

lava menu design structure

Lastly, *drumroll*, you just make a expandable rounded box. Why called it expandable? because the jQuery will resize the width of the head class so that it will fit to list item. You might want to further playing around with the CSS to tweak the #box. And you can adjust it in the following section of the CSS:

  • height, padding-right and margin-left in #box
  • height, and padding-left of the .head class
	body {
		font-family:georgia; 
		font-size:14px; 
	}
	a {
		text-decoration:none; 
		color:#333;
	}
	
	#lava {
		/* you must set it to relative, so that you can use absolute position for children elements */
		position:relative; 
		text-align:center; 
		width:583px; 
		height:40px;
	}
	
	#lava ul {
		/* remove the list style and spaces*/
		margin:0; 
		padding:0; 
		list-style:none; 
		display:inline;
				
		/* position absolute so that z-index can be defined */
		position:absolute; 
		
		/* center the menu, depend on the width of you menu*/
		left:110px; 
		top:0; 
		
		/* should be higher than #box */
		z-index:100;

	}
	
	#lava ul li {
		
		/* give some spaces between the list items */
		margin:0 15px; 
		
		/* display the list item in single row */
		float:left;
	}
	
	#lava #box {
		
		/* position absolute so that z-index can be defined and able to move this item using javascript */
		position:absolute; 
		left:0; 
		top:0; 
		
		/* should be lower than the list menu */
		z-index:50; 

		/* image of the right rounded corner */
		background:#ccc; 
		height:20px;
		
		/* add padding 8px so that the tail would appear */
		padding-right:8px;
		
		/* self-adjust negative margin to make sure the box display in the center of the item */
		margin-left:-10px;
	}
	
	#lava #box .head {
		/* image of the left rounded corner */
		background:#eee;
		height:20px;

		/* self-adjust left padding to make sure the box display in the center of the item */
		padding-left:10px;
	}

3. Javascript

As long as we have the CSS ready, jQuery will move the floating box to the correct position and react to the mouse events. To make it even easier to understand, I break it into two sections

This is what jQuery will do once the page is loaded:

  1. Once the javascript load, it search for the default selected item,
  2. and then, it grabs its position and its width and set it to the floating box

This is what jQuery will do with the mouse hover and mouseout event:

  1. It grabs the mouse hovered item's position and width,
  2. and then, set it to the floating box with the animate method and the animation transition with certain duration (you can change the duration)
  3. If the mouse out of the menu, it grabs the default selected item's positon and width, and move the floating box back to the original position
  4. And, if user clicked on the item, it will be the default selected item
	
	$(document).ready(function () {

		//transitions
		//for more transition, goto http://gsgd.co.uk/sandbox/jquery/easing/
		var style = 'easeOutElastic';
		
		//Retrieve the selected item position and width
		var default_left = Math.round($('#lava li.selected').offset().left - $('#lava').offset().left);
		var default_width = $('#lava li.selected').width();

		//Set the floating bar position and width
		$('#box').css({left: default_left});
		$('#box .head').css({width: default_width});

		//if mouseover the menu item
		$('#lava li').hover(function () {
			
			//Get the position and width of the menu item
			left = Math.round($(this).offset().left - $('#lava').offset().left);
			width = $(this).width(); 

			//Set the floating bar position, width and transition
			$('#box').stop(false, true).animate({left: left},{duration:1000, easing: style});	
			$('#box .head').stop(false, true).animate({width:width},{duration:1000, easing: style});	
		
		//if user click on the menu
		}).click(function () {
			
			//reset the selected item
			$('#lava li').removeClass('selected');	
			
			//select the current item
			$(this).addClass('selected');
	
		});
		
		//If the mouse leave the menu, reset the floating bar to the selected item
		$('#lava').mouseleave(function () {

			//Retrieve the selected item position and width
			default_left = Math.round($('#lava li.selected').offset().left - $('#lava').offset().left);
			default_width = $('#lava li.selected').width();
			
			//Set the floating bar position, width and transition
			$('#box').stop(false, true).animate({left: default_left},{duration:1500, easing: style});	
			$('#box .head').stop(false, true).animate({width:default_width},{duration:1500, easing: style});		
			
		});
		
	});

Update

2009-08-15: Wrong calculation for left value. Fixed. Credit to Carolyn who found the bug! :)

Conclusion

That's the lava lamp menu :) We've just reinvented the lava lamp! A version that you understand fully how it works, and modify it at your will. I hope you will also learn some analytic skills from this, and sooner or later you will able to create your own menu with unique effect. Who knows, I might reinvent your inventions one day. :)

Like this tutorials? You can express your gratitude by visiting my sponsors on the sidebar, buy me a drink in the bottom of the page or, just bookmark it and help me to spread this tutorial to the rest of the people who you think they are interested! :) Thanks!

Default/Naked version
Demonstration
Styled with skyblue version
Demonstration
Download
Download

AdvertisementYou can get our complete 350-018 exam pass resources including our latest comptia server+ and 650-297 dumps training courses. 70-515 and 6101-1 are also playing vital role in IT world.

Show Some Love, Spread This Post!

53 comments

Sayali Tue, 17th April 2012 If we need a drop down (sub menu) for any of the tab, how do i do that?
Reply
Bintang Tue, 10th April 2012 very-very good-looking tab-menu!! A must-try-tutorial. Thanks for the script.
Reply
Sergio Fri, 23rd March 2012 Greetings.
I new with jquery, and i am testing your lava menu in one of my html pages, everything works just fine, until i click in any given option. Looks like the click is not working because is not taking me to the intended html page i wanto go to. Any help will be greatly appreciated.
Thanks,
Sergio
Reply
Kevin Liew Mon, 26th March 2012 because there aren't any links included. It's just a hash tag.
john Fri, 23rd September 2011 guys i need your help . i want to add a drop-dpwn menu ,
what should i do ..
cheers
Reply
claudio Sun, 25th December 2011 You can do this:
<ul>
<li>Item 1</li>
<li>Item2 with dropdown
<ul>
<li>Item A</li>
<li>Item B</li>
</ul>
</li>
</ul>
Kevin Liew Mon, 2nd January 2012 and combine it with:
http://www.queness.com/post/1047/easy-to-style-jquery-drop-down-menu-tutorial

:)
tareq Tue, 20th September 2011 hey all ,
how can i add drop down submenu into this lava menu .. please anyone can help me with that ...
Reply
tareq Thu, 15th September 2011 guys , when i click on the last item in the nav menu , the box is moving away from the menu bar before it turns back , what should i do to minimize the width ..???
Reply
tareq Thu, 15th September 2011 hey .
what should i do to control the (speed) of the box ???
Reply
Kevin Liew Mon, 13th February 2012 you can play with line 23, 24, 45, 46.
tareq Wed, 14th September 2011 hey all ,
i just wanna know how can the lava lamp stay on the selected item after refreshing the page ,
coz my href's have $_GET values , and clicking them will refresh the page and change the main content only ,
what should i do
anyone can help me please , as soon as you can
thanks
cheers
Reply
Kevin Liew Wed, 14th September 2011 Hi, you can do it like this:

<li class="<?=($_GET['page'] == 'pagename') ? 'selected' : '' ?>">Menu Item</li>

you will need to substitute $_GET['page'] based on your variable. You will need to do it for all the list item.
tareq Thu, 15th September 2011 thanks for the post . i got the idea , but i didn't work for me , here is my code .what should i do ???

<li class="<?=($_GET['do'] == 'main')?'selected':'' ?>"><a href="demo.php?do=main">Home</a></li>
<li class="<?=($_GET['do'] == 'second')?'selected':'' ?>"><a href="demo.php?do=second">second</a></li>

thanks
Kevin Liew Thu, 15th September 2011 Does it display any error? So, when you navigate to "main" page, does it displays "selected" in the LI? If not, try to echo $_GET['do'] out to see the data in it.
tareq Thu, 15th September 2011 yes , when i navigate to "main" page it takes the width for the home item , but the position is wrong
the position changes to an empty area , maybe i can send you a screen shot or somthing ,

thanks alot for your help ,
tareq Thu, 15th September 2011 ooooops ,
am sorry , the code you send it to works 100%
thanks alot for your help
i dont know how to thank you , here is my email
tareq[dot]bajjaly[at]hotmail[dot]com
add me if you want , and if there anythingg i could do , feel free to contact me
:):)
cheers
VicTheme Wed, 13th July 2011 Thanks for sharing..
I’ve also just created lavalamp menu using Drupal module which can be view here http://www.victheme.com/demo_product/7
Welcome for any review or comment:)
Reply
Eric Wed, 15th June 2011 I'm having trouble getting this menu to work with the default wordpress styling (twentyten theme). In the javascript code, I've replaced #lava with .menu-header, and replaced li.selected with li.current-menu-item. I'm sure I'm missing something else. Your help would be much appreciated!
Reply
manarius Mon, 13th February 2012 should be
.current_menu_item

with underscores (guess it wont help the poster, but maybe others that look for this info here ;)
Daniel Wed, 11th May 2011 Hi there. I've implemented this awesome menu, but i have problem: my #lava item needs to be 750px; when the user do a rollover in the last menu item, the #box runs quickly to this position and is out from the #container. When the #box returns from the last menu item to the first menu item occurs the same thing. If anyone wants to see the example, i can provide the url of my site.
Reply
Natalia Wed, 6th April 2011 Funciona! muy buen articulo, muchas gracias por compartirlo.
Thanks!
Reply
James Barrett Mon, 14th February 2011 Great script. I have modified it a bit and what is happening is that the calculation for the left 5 out of 10 times causes the following
<div id="box" style="left: 40px; ">
<div class="head" style="width: 1279px; ">
</div>
</div>
if you want to see my development to see it in action please visit http://daspixl.com/dev
Reply
Katy Sun, 16th January 2011 what should i do to add more items in menu??
Reply
Kevin Liew Mon, 17th January 2011 You do this:

<ul>
<li><a href="#">home</a></li>
<li><a href="#">lava lamp menu</a></li>
<li><a href="#">queness.com</a></li>
<li class="selected"><a href="#">jQuery</a></li>
<li><a href="#">new item 1</a></li>
<li><a href="#">new item 2</a></li>
............
</ul>

also, you need to increase the width accordingly,

#lava {
.....
width:583px;
.....
}
tareq Wed, 21st September 2011 what about drop down menu . can i add a drop down sub menu ????????
tareq Fri, 23rd September 2011 ??????? come oooon kevin
Jessca Doley Mon, 4th October 2010 great tutorial and useful code! Thank you for sharing :)
Reply
EngineerCreativity Sun, 29th August 2010 Brilliant tutorial
Reply
qing Thu, 19th August 2010 very nice post!
it is just what i am looking for.
thank you for sharing :)
Reply
niveen Wed, 30th June 2010 designer
Reply
Sprike Ltd Tue, 8th June 2010 Brilliant post
Reply
Damien Fri, 12th March 2010 Hello Kevin, I managed to install Lavalamp on my main menu. This works perfectly. I then installed Lavalamp on a second menu on the same page by adding the second selector alongside the first: ( "# ID1, ID2 #) and (selected1, selected2) and (# box1, # box2) (# box1. head1, # box2. head2). My problem is that i hover the <li>'s second menu, Lavalamp works but only on the first menu. The box is the size of the second menu li (perfect) but appears on the main menu (not perfect)).
Could you help me with that? thans so much for your advise. Damien
Reply

Leave a comment

Have something to say? Drop a comment! No HTML tags are allowed in the comment textfield.

Advertisement