Team:NCTU Formosa/source/head

From 2013.igem.org

(Difference between revisions)
Line 79: Line 79:
   }     
   }     
});
});
-
$.fn.followTo = function (pos) {
+
/*$.fn.followTo = function (pos) {
     var $this = this,
     var $this = this,
         $window = $(window),
         $window = $(window),
Line 101: Line 101:
};
};
$('#toc').followTo(431);
$('#toc').followTo(431);
-
});
+
});*/
$(document).ready(function(){
$(document).ready(function(){
     var away = false;
     var away = false;
Line 114: Line 114:
             away = false;
             away = false;
if ($(document).scrollTop() < 431){
if ($(document).scrollTop() < 431){
-
             $('#toc').stop().animate({'top': '0px'}, 1500);
+
             $('#toc').stop().animate({'top': '0px'}, 1500).css({
 +
                position: 'absolute'
 +
            });;
}
}
else {
else {
-
             $('#toc').stop().animate({'top': '78px'}, 1500);
+
             $('#toc').stop().animate({'top': '78px'}, 1500).css({
 +
                position: 'fixed'
 +
            });;
}
}
         }
         }

Revision as of 19:50, 15 September 2013