Difference between revisions of "Team:ZJU-China/Template/label.js"
Line 25: | Line 25: | ||
{ | { | ||
jQuery('aside').css('position','fixed').css('top','50px'); | jQuery('aside').css('position','fixed').css('top','50px'); | ||
− | jQuery('asider').css('position','fixed').css('top','50px'); | + | jQuery('asider').css('position','fixed').css('top','50px'); |
+ | jQuery('aside').fadeOut('normal'); | ||
+ | jQuery('asider').fadeOut('normal'); | ||
} | } | ||
else | else | ||
{ | { | ||
jQuery('aside').css('position','static').css('float','left').css('position','absolute').css('top','150px'); | 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'); | + | jQuery('asider').css('position','static').css('float','left').css('position','absolute').css('top','150px'); |
+ | jQuery('aside').fadeIn('normal'); | ||
+ | jQuery('asider').fadeIn('normal'); | ||
} | } | ||
+ | |||
}); | }); | ||
}); | }); |
Revision as of 05:35, 5 September 2015
jQuery(document).ready(function(){
var isHiden1 = true; /*控制切换菜单*/ var isHiden2 = true; /*控制切换菜单*/ jQuery('#popView1').click(function(){ if(isHiden1){ jQuery('#popView1').animate({left:'+=150px'});//菜单块向右移动
jQuery('#popView2').css('display','inline'); jQuery('#popView2').animate({right:'+=150px'});//菜单块向右移动
}else{ jQuery('#popView1').animate({left:'-=150px'}); //菜单块向左移动 jQuery('#popView2').animate({right:'-=150px'});//菜单块向右移动
jQuery('#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'); jQuery('aside').fadeOut('normal'); jQuery('asider').fadeOut('normal'); } 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'); jQuery('aside').fadeIn('normal'); jQuery('asider').fadeIn('normal'); }
});
}); /* slide */ jQuery(document).ready(function(){
jQuery('a[href^="#"]').on('click',function (e) { e.preventDefault();
var target = this.hash, $target = jQuery(target);
jQuery('html, body').stop().animate({ 'scrollTop': $target.offset().top }, 900, 'swing', function () { window.location.hash = target; }); });
});