Team:NYMU-Taipei/menu.js

From 2014.igem.org

(Difference between revisions)
m
m
Line 16: Line 16:
         if(y>60){
         if(y>60){
             $('#menu').css({
             $('#menu').css({
-
                 
+
                position:'fixed',
                 top:0,
                 top:0,
             });
             });

Revision as of 15:33, 2 June 2014

$( document ).ready(function() {

 $('#menu > ul > li')
       .on('mouseover', function(){
           clearTimeout($.data(this,'timer'));
           $(this).find('ul').stop(true,true).slideDown(200);  
          // $(this).find('ul').css({display:'inline-block'});
       })
       .on('mouseout', function(){
           $.data(this,'timer', setTimeout($.proxy(function() {
           $(this).find('ul').stop(true,true).slideUp(200);
           }, this), 100));  
        //   $(this).find('ul').css({display:'none'});
       });
 $(window).scroll(function (event){
        var y = $(this).scrollTop();
        if(y>60){
            $('#menu').css({
                position:'fixed', 
                top:0,
            });
        }
        else{
            $('#menu').css({
                position:'relative',
                top:240,
            });
        }
 });

});