Difference between revisions of "Team:SSTi-SZGD/js/InterLab"

(Created page with "custom Team Effect: $(function(){ $(".header .nav .mainnav").eq(1).hover(function(){ $(".header .nav .Project span").css("color","#FAEE0D"); },function(){ $(".heade...")
 
 
Line 6: Line 6:
 
},function(){
 
},function(){
 
$(".header .nav .Project span").css("color","#FAEE0D");
 
$(".header .nav .Project span").css("color","#FAEE0D");
 +
});
 +
 +
});
 +
 +
/*Follow the height of the window size*/
 +
$(function(){
 +
 +
var winHeight=$(window).outerHeight();
 +
if(winHeight>=489){
 +
$(".SSTi-SZGD").css("height",winHeight);
 +
}
 +
else{
 +
$(".SSTi-SZGD").css("height","489px");
 +
}
 +
 +
$(window).resize(function(){
 +
 +
winHeight=$(window).outerHeight();
 +
if(winHeight>=489){
 +
$(".SSTi-SZGD").css("height",winHeight);
 +
}else{
 +
$(".SSTi-SZGD").css("height","489px");
 +
}
 +
 
});
 
});
 
 
 
});
 
});

Latest revision as of 04:46, 27 October 2017

/*custom Team Effect*/ $(function(){

$(".header .nav .mainnav").eq(1).hover(function(){ $(".header .nav .Project span").css("color","#FAEE0D"); },function(){ $(".header .nav .Project span").css("color","#FAEE0D"); });

});

/*Follow the height of the window size*/ $(function(){

var winHeight=$(window).outerHeight(); if(winHeight>=489){ $(".SSTi-SZGD").css("height",winHeight); } else{ $(".SSTi-SZGD").css("height","489px"); }

$(window).resize(function(){

winHeight=$(window).outerHeight(); if(winHeight>=489){ $(".SSTi-SZGD").css("height",winHeight); }else{ $(".SSTi-SZGD").css("height","489px"); }

});

});