Ignore:
Timestamp:
Jul 9, 2011, 4:41:55 PM (13 years ago)
Author:
flop25
Message:

masonry works for thumbnails album and thumbnails pics
all max-width cancelled
menu switch works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped_black_bloc/local_head.tpl

    r10851 r11677  
    1212
    1313}
     14jQuery(document).ready(function(jQuery){
     15       
     16        jQuery(".bloc a").hover(function() { jQuery(this).fadeTo(500, 1); }, function() { jQuery(this).fadeTo(500, 0.75);  });
     17        var sidemenu = jQuery.cookie('side-menu');
     18        var isdisplayed;
     19                // if cookie says the menu is hiding, keep it hidden!
     20        if (sidemenu == 'hiding') {
     21                jQuery("#subcontent").css({'margin-left' : '0'});
     22                isdisplayed=false;
     23        }
     24        if (sidemenu == 'showing') {
     25                jQuery("#subcontent").css({'margin-left' : '20em'});
     26                isdisplayed=true;
     27        }
     28        // creates a variable with the contents of the cookie side-menu
     29        jQuery("#menuswitcher").click(function(){
     30                if (jQuery("#menubar").is(":hidden") || isdisplayed==false ) {
     31                        jQuery("#subcontent").css({'margin-left' : '20em'});
     32                        isdisplayed=true;
     33                } else {
     34                        jQuery("#subcontent").css({'margin-left' : '0'});
     35                        isdisplayed=false;
     36                }
     37        });
    1438
    15 jQuery(document).ready(function(){
    16         $('#subcontent').masonry({
     39        jQuery('#subcontent').masonry({
    1740                  singleMode: true,
    1841                columnWidth: 200,
     
    2043                animate: true
    2144        });
    22        
    23 $(".bloc a").hover(function() { $(this).fadeTo(500, 1); }, function() { $(this).fadeTo(500, 0.75);  });
    24 });
    25         jQuery("#menuswitcher").click(function(){
    26 
    2745});
    2846  </script>
Note: See TracChangeset for help on using the changeset viewer.