|
3 | 3 | slideMenu: function() {
|
4 | 4 | return this.each(function(){
|
5 | 5 |
|
6 |
| - $(this).wrap('<div class="slide_menu_wrapper" />'); |
7 |
| - $(this).parent('.slide_menu_wrapper').wrap('<div class="slide_menu"><div class="slide_menu_inner"></div></div>'); |
8 |
| - |
| 6 | + // Add some divs that are used to hold the list and animate |
| 7 | + $(this).wrap('<div class="slide_menu"><div class="slide_menu_inner"><div class="slide_menu_wrapper"></div></div></div>'); |
| 8 | + |
| 9 | + // Get refference to the slideMenu holder div |
9 | 10 | var $slideMenu = $(this).parent().parent().parent().filter(".slide_menu");
|
| 11 | + var $slideMenuWrapper = $slideMenu.find('.slide_menu_wrapper'); |
| 12 | + |
| 13 | + // Get the width of the menu from CSS. |
10 | 14 | var ulwidth = $slideMenu.width();
|
11 | 15 | var page = 1;
|
12 | 16 | var speed = 300;
|
| 17 | + var link_height = 41; |
| 18 | + var link_spacing = 10; |
| 19 | + var sections = $slideMenuWrapper.children("ul").children("li").size(); |
13 | 20 |
|
| 21 | + // This is a bit complicated! |
| 22 | + // Find all the li elements that have uls inside and set class "active". Then find the children links of this li elements and wrap them with a span with class 'holder' after witch insert another span with class "next" in the "holder" span. Go back to the li element and find ul ekements and insert a li header element in the beginning. |
14 | 23 | $slideMenu.find("ul").parent().filter("li").addClass("parent").children('a').wrap('<span class="holder" />').parent('.holder').append('<span class="next">Next</span>').end().end().find('ul').prepend('<li class="li_header"><span class="holder"><span class="back">Back</span><span class="title"></span></span></li>');
|
15 | 24 |
|
| 25 | + // Get all the title span elements and populate them with the text of the a that is the parent ot the current ul |
16 | 26 | $slideMenu.find("span.title").each(function()
|
17 | 27 | {
|
18 | 28 | $(this).text( $(this).parent().parent().parent().parent().find('> span > a').text() );
|
19 | 29 | });
|
20 | 30 |
|
| 31 | + $slideMenuWrapper.css("height", ((link_height + link_spacing) * sections) + link_spacing); |
| 32 | + |
| 33 | + |
| 34 | + // Let the magic begin. Attaching click event on the spans with class "next" or "back" |
21 | 35 | $slideMenu.find("li span.back, li span.next").click(function(){
|
22 | 36 |
|
| 37 | + // Creatong a reference to the parent li |
23 | 38 | $objli = $(this).parent().parent();
|
24 | 39 |
|
25 | 40 | if ( $(this).hasClass('next') )
|
26 | 41 | {
|
| 42 | + |
| 43 | + // Add class active to the parent li so that the UL inside will be visible |
27 | 44 | $objli.addClass("active");
|
28 |
| - |
29 |
| - $slideMenu.find('.slide_menu_wrapper') |
30 |
| - .animate({ left: -ulwidth * page, }, speed, |
| 45 | + |
| 46 | + // How many li elements does the next Ul have? |
| 47 | + sections = $objli.children("ul").children("li").size(); |
| 48 | + |
| 49 | + // Get the slide_menu_wrapper div and prepare to animate the movement. |
| 50 | + $slideMenuWrapper.animate({ left: -ulwidth * page, height: ((link_height + link_spacing) * sections) + link_spacing }, speed, |
31 | 51 | function()
|
32 | 52 | {
|
| 53 | + // After animation is over update the page variable |
33 | 54 | page = page + 1;
|
34 | 55 | }
|
35 | 56 | );
|
36 | 57 | }
|
37 | 58 | else
|
38 | 59 | {
|
| 60 | + // First we update the page variable |
39 | 61 | page = page - 1;
|
| 62 | + |
| 63 | + // How many li elements does the previous Ul have? |
| 64 | + sections = $objli.parent().parent().parent().children("li").size(); |
40 | 65 |
|
41 |
| - $slideMenu.find('.slide_menu_wrapper') |
42 |
| - .animate({ left: -ulwidth*(page-1) }, speed, |
43 |
| - function(){ |
44 |
| - $objli.parent().parent().removeClass("active"); |
45 |
| - } |
46 |
| - ); |
47 |
| - |
48 |
| - if ( page == 1 ) |
49 |
| - { |
50 |
| - $slideMenu.find('.slide_menu_wrapper').animate({ left: 1, marginLeft: -1 }, 10); |
51 |
| - } |
52 |
| - |
| 66 | + $slideMenuWrapper.animate({ left: -ulwidth * (page-1), height: ((link_height + link_spacing) * sections) + link_spacing }, speed, |
| 67 | + function() |
| 68 | + { |
| 69 | + $objli.parent().parent().removeClass("active"); |
| 70 | + } |
| 71 | + ); |
53 | 72 | }
|
54 | 73 |
|
55 | 74 | });
|
56 | 75 |
|
57 | 76 | });
|
58 |
| - |
59 | 77 | }
|
60 |
| - |
61 | 78 | });
|
62 | 79 | })(jQuery);
|
63 | 80 |
|
0 commit comments