Team:ZJU-China/label.js

$(document).ready(function(){

   var isHiden1 = true;	/*控制切换菜单*/
   var isHiden2 = true;	/*控制切换菜单*/
   $('#popView1').click(function(){
       if(isHiden1){
     $('#popView1').animate({left:'+=150px'});//菜单块向右移动

$('#popView2').css('display','inline'); $('#popView2').animate({right:'+=150px'});//菜单块向右移动

   }else{
     $('#popView1').animate({left:'-=150px'}); //菜单块向左移动
	  $('#popView2').animate({right:'-=150px'});//菜单块向右移动

$('#popView2').css('display','none');

   }
   isHiden1 = !isHiden1;
   });


});


jQuery(function() {

   jQuery(document).scroll(function() {
       if(jQuery(document).scrollTop()>=100)
           {
               jQuery('aside').css('position','fixed').css('top','50px');
               jQuery('asider').css('position','fixed').css('top','50px');                
           }
           else
           {
               jQuery('aside').css('position','static').css('float','left').css('position','absolute').css('top','150px'); 
               jQuery('asider').css('position','static').css('float','left').css('position','absolute').css('top','150px');                
           } 
   });

}); /* slide */ $(document).ready(function(){

 $('a[href^="#"]').on('click',function (e) {
     e.preventDefault();
     var target = this.hash,
     $target = $(target);
     $('html, body').stop().animate({
         'scrollTop': $target.offset().top
     }, 900, 'swing', function () {
         window.location.hash = target;
     });
 });

});