Line 87: | Line 87: | ||
}); | }); | ||
− | // | + | |
− | + | //Where am I? Setting cookies! | |
− | + | function SetCookie(sName, sValue) { | |
− | + | date = new Date(); | |
− | + | s = date.getDate(); | |
− | + | date.setDate(s + 1); //expire time is one month late!, and can't be current date! | |
− | + | document.cookie = sName + "=" + escape(sValue) + "; expires=" + date.toGMTString(); | |
− | + | } | |
− | + | function GetCookie(sName) | |
− | + | { | |
− | + | // cookies are separated by semicolons | |
− | + | var aCookie = document.cookie.split("; "); | |
− | + | for (var i=0; i < aCookie.length; i++) | |
− | + | { | |
− | + | // a name/value pair (a crumb) is separated by an equal sign | |
− | + | var aCrumb = aCookie[i].split("="); | |
− | + | if (sName == aCrumb[0]) { | |
− | + | return unescape(aCrumb[1]);} | |
− | + | } | |
− | + | // a cookie with the requested name does not exist | |
− | + | return null; | |
− | + | } | |
− | + | function fnLoad() | |
− | + | { | |
− | + | document.documentElement.scrollTop = GetCookie("scrollTop"); | |
− | + | } | |
− | + | function fnUnload() | |
− | + | { | |
+ | SetCookie("scrollTop", document.documentElement.scrollTop); | ||
+ | } | ||
+ | window.onload = fnLoad; | ||
+ | window.onunload = fnUnload; | ||
Line 171: | Line 175: | ||
//reset figurebanner height | //reset figurebanner height | ||
var $figureBanner=$(".figureBanner"); | var $figureBanner=$(".figureBanner"); | ||
− | + | $(function () { | |
− | + | if($(window).width()>=992 && $(window).width()>$(window).height()){ | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | if($(window).width()>= | + | |
$figureBanner.css("height",$(window).height()-75); | $figureBanner.css("height",$(window).height()-75); | ||
} | } | ||
Line 186: | Line 182: | ||
$figureBanner.css("height",400); | $figureBanner.css("height",400); | ||
} | } | ||
+ | $(window).resize(function () { | ||
+ | if($(window).width()>=992 && $(window).width()>$(window).height()){ | ||
+ | $figureBanner.css("height",$(window).height()-75); | ||
+ | } | ||
+ | else if($(window).width()>=600){ | ||
+ | $figureBanner.css("height",400); | ||
+ | } | ||
+ | }); | ||
}); | }); | ||
Line 191: | Line 195: | ||
//Let's "fix" the navigator!! | //Let's "fix" the navigator!! | ||
− | |||
$(function () { | $(function () { | ||
var $topNav=$('#topNav'); | var $topNav=$('#topNav'); | ||
Line 200: | Line 203: | ||
var bannerHeight=$('#contentBanner').height(); | var bannerHeight=$('#contentBanner').height(); | ||
//init | //init | ||
− | |||
− | |||
//topNav | //topNav | ||
− | + | if(scrollTop<18){$topNav.css('top',18-scrollTop);} | |
− | + | else {$topNav.css('top',0);} | |
− | + | ||
//pageContentNav | //pageContentNav | ||
− | if(footerLocation< | + | if(footerLocation<152+pageContentNavHeight){ |
− | $pageContentNav.css('top',footerLocation-pageContentNavHeight- | + | $pageContentNav.css('top',footerLocation-pageContentNavHeight-20); |
} | } | ||
− | else if(bannerHeight+180-scrollTop | + | else if(bannerHeight+180-scrollTop>132){ |
− | $pageContentNav.css('top',bannerHeight+180-scrollTop | + | $pageContentNav.css('top',bannerHeight+180-scrollTop); |
} | } | ||
else{ | else{ | ||
Line 221: | Line 221: | ||
pageContentNavHeight=$pageContentNav.height(); | pageContentNavHeight=$pageContentNav.height(); | ||
bannerHeight=$('#contentBanner').height(); | bannerHeight=$('#contentBanner').height(); | ||
− | + | //topNav | |
− | + | if(scrollTop<18){$topNav.css('top',18-scrollTop);} | |
− | + | else {$topNav.css('top',0);} | |
− | + | ||
− | + | ||
//pageContentNav | //pageContentNav | ||
− | if(footerLocation< | + | if(footerLocation<152+pageContentNavHeight){ |
− | $pageContentNav.css('top',footerLocation-pageContentNavHeight- | + | $pageContentNav.css('top',footerLocation-pageContentNavHeight-20); |
} | } | ||
− | else if(bannerHeight+180-scrollTop | + | else if(bannerHeight+180-scrollTop>132){ |
− | $pageContentNav.css('top',bannerHeight+180-scrollTop | + | $pageContentNav.css('top',bannerHeight+180-scrollTop); |
} | } | ||
else{ | else{ | ||
Line 262: | Line 260: | ||
//gallery | //gallery | ||
var $galleryActive=$(".galleryActive > img"); | var $galleryActive=$(".galleryActive > img"); | ||
+ | var $FudanGallery=$(".FudanGallery"); | ||
var $galleryThumbnail=$(".galleryThumbnail"); | var $galleryThumbnail=$(".galleryThumbnail"); | ||
var $galleryThumbnailImg=$(".galleryThumbnail > img"); | var $galleryThumbnailImg=$(".galleryThumbnail > img"); | ||
Line 295: | Line 294: | ||
$topNav.fadeIn(200); | $topNav.fadeIn(200); | ||
} | } | ||
− | $( | + | $(document).on("scroll",function () { |
footerHeight=$("#FudanFooter").height(); | footerHeight=$("#FudanFooter").height(); | ||
pageHeight=$("#FudanWrapper").height(); | pageHeight=$("#FudanWrapper").height(); | ||
Line 306: | Line 305: | ||
} | } | ||
}); | }); | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Revision as of 01:39, 17 October 2018
//Sidenav Init $(function(){
$('.sidenav').sidenav({ edge:'right', inDuration: 250, outDuration: 350 });
});
//Slider Init (Index Only) $(function(){
$('.slider').slider({ height: 400 });
});
//Dropdown Init $(".dropdown-trigger").dropdown({
coverTrigger: false, hover: true, inDuration: 250, outDuration: 350
});
//Floating Btn Init $(function(){
$('.fixed-action-btn').floatingActionButton();
});
//Tabs Init $(function(){
$('.tabs').tabs();
});
$(function(){
$('.tap-target').tapTarget();
});
//Collapsible Init $(function(){
$('.collapsible').collapsible({});
});
//ScrollSpy Init $(function(){
$('.scrollspy').scrollSpy();
});
if(0) {
//align sponsors img
var $sponsors = $('.sponsors'); var sponsor0Height = $sponsors.eq(0).height();
function sponsorsImgAlignment() { sponsor0Height = $sponsors.eq(0).height(); for (var i = 1; i < $sponsors.length; i++) { $sponsors.eq(i).css('margin-top', 0.5 * (sponsor0Height - $sponsors.eq(i).height()) + 5); } }
$(function () { setTimeout('sponsorsImgAlignment()', 2000); sponsorsImgAlignment(); $(window).resize(function () { sponsorsImgAlignment(); }); });
}
//Init slide-out nav
$(function () {
$('#slide-out .collapsible-body').css('display','none'); $('#slide-out .collapsible li').removeClass('active');
});
//Parallax Init $(function(){
$('.parallax').parallax();
});
//Where am I? Setting cookies!
function SetCookie(sName, sValue) {
date = new Date(); s = date.getDate(); date.setDate(s + 1); //expire time is one month late!, and can't be current date! document.cookie = sName + "=" + escape(sValue) + "; expires=" + date.toGMTString();
} function GetCookie(sName) {
// cookies are separated by semicolons var aCookie = document.cookie.split("; "); for (var i=0; i < aCookie.length; i++) { // a name/value pair (a crumb) is separated by an equal sign var aCrumb = aCookie[i].split("="); if (sName == aCrumb[0]) { return unescape(aCrumb[1]);} } // a cookie with the requested name does not exist return null;
} function fnLoad() {
document.documentElement.scrollTop = GetCookie("scrollTop");
} function fnUnload() {
SetCookie("scrollTop", document.documentElement.scrollTop);
} window.onload = fnLoad; window.onunload = fnUnload;
//Abstract on Content Page var $abstractBtn=$("#abstractBtn"); var $abstractContentCloseBtn=$("#abstractContent > a:eq(0)"); var $abstractContent=$("#abstractContent"); $abstractBtn.click(function () {
$abstractContent.toggle(); $abstractContentCloseBtn.click(function () { $abstractContent.css('display','none'); });
});
//Acknowledgement Photo adjust var $acknowledgementPhotoImg1=$("#acknowledgementPhoto>div.row:eq(0)>div"); var $acknowledgementPhotoImg2=$("#acknowledgementPhoto>div.row:eq(1)>div"); var $acknowledgementPhotoImg3=$("#acknowledgementPhoto>div.row:eq(2)>div"); var acknowledgementPhotoImgWidth1=$acknowledgementPhotoImg1.eq(0).width(); var acknowledgementPhotoImgWidth2=$acknowledgementPhotoImg2.eq(0).width(); var acknowledgementPhotoImgWidth3=$acknowledgementPhotoImg3.eq(0).width(); $acknowledgementPhotoImg1.css("height",acknowledgementPhotoImgWidth1*1.35); $acknowledgementPhotoImg2.css("height",acknowledgementPhotoImgWidth1); $acknowledgementPhotoImg3.css("height",acknowledgementPhotoImgWidth3*0.38); $(window).resize(function () {
acknowledgementPhotoImgWidth1=$acknowledgementPhotoImg1.eq(0).width(); acknowledgementPhotoImgWidth3=$acknowledgementPhotoImg3.eq(0).width(); $acknowledgementPhotoImg1.css("height",acknowledgementPhotoImgWidth1*1.4); $acknowledgementPhotoImg2.css("height",acknowledgementPhotoImgWidth1); $acknowledgementPhotoImg3.css("height",acknowledgementPhotoImgWidth3*0.38);
});
$acknowledgementPhotoImg1.mouseover(function () {
$(this).children("span").eq(0).css("display","inherit"); $(this).children("span").eq(0).css("width",acknowledgementPhotoImgWidth1); $acknowledgementPhotoImg1.mouseout(function () { $(this).children("span").eq(0).css("display","none");
});
}); $acknowledgementPhotoImg2.mouseover(function () {
$(this).children("span").eq(0).css("display","inherit"); $(this).children("span").eq(0).css("width",acknowledgementPhotoImgWidth2); $acknowledgementPhotoImg2.mouseout(function () { $(this).children("span").eq(0).css("display","none");
});
});
//reset figurebanner height var $figureBanner=$(".figureBanner"); $(function () {
if($(window).width()>=992 && $(window).width()>$(window).height()){ $figureBanner.css("height",$(window).height()-75); } else if($(window).width()>=600){ $figureBanner.css("height",400); } $(window).resize(function () { if($(window).width()>=992 && $(window).width()>$(window).height()){ $figureBanner.css("height",$(window).height()-75); } else if($(window).width()>=600){ $figureBanner.css("height",400); } });
});
//Let's "fix" the navigator!! $(function () { var $topNav=$('#topNav'); var $pageContentNav=$('#pageContentNav'); var scrollTop=$(document).scrollTop(); var footerLocation=$("#FudanFooter").offset().top-scrollTop; var pageContentNavHeight=$pageContentNav.height(); var bannerHeight=$('#contentBanner').height(); //init //topNav if(scrollTop<18){$topNav.css('top',18-scrollTop);} else {$topNav.css('top',0);} //pageContentNav if(footerLocation<152+pageContentNavHeight){
$pageContentNav.css('top',footerLocation-pageContentNavHeight-20);
} else if(bannerHeight+180-scrollTop>132){
$pageContentNav.css('top',bannerHeight+180-scrollTop);
} else{
$pageContentNav.css('top',132);
} $(document).on('scroll',function () {
scrollTop=$(document).scrollTop(); footerLocation=$("#FudanFooter").offset().top-scrollTop; pageContentNavHeight=$pageContentNav.height(); bannerHeight=$('#contentBanner').height(); //topNav if(scrollTop<18){$topNav.css('top',18-scrollTop);} else {$topNav.css('top',0);} //pageContentNav if(footerLocation<152+pageContentNavHeight){ $pageContentNav.css('top',footerLocation-pageContentNavHeight-20); } else if(bannerHeight+180-scrollTop>132){ $pageContentNav.css('top',bannerHeight+180-scrollTop); } else{ $pageContentNav.css('top',132); }
}); });
//Hide floating btn! var $floatingBtn=$(".floatingBtn"); scrollTop=$(document).scrollTop(); function hideFloatingBtn(a) {
if(a<200){ $floatingBtn.fadeOut(200); } else{ $floatingBtn.fadeIn(200); }
} hideFloatingBtn(scrollTop); $(document).on("scroll",function () {
scrollTop=$(document).scrollTop(); hideFloatingBtn(scrollTop);
});
//gallery var $galleryActive=$(".galleryActive > img"); var $FudanGallery=$(".FudanGallery"); var $galleryThumbnail=$(".galleryThumbnail"); var $galleryThumbnailImg=$(".galleryThumbnail > img"); var $galleryBtnLeft=$(".galleryBtnLeft"); var $galleryBtnRight=$(".galleryBtnRight"); var galleryThumbnailScrollLeft=$galleryThumbnail.eq(0).scrollLeft(); var galleryThumbnailWidth=$galleryThumbnail.eq(0).width(); $galleryThumbnailImg.click(function () {
$galleryThumbnailImg.animate({opacity:0.7},200); $(this).animate({opacity:1},200); $galleryActive.attr("src",$(this).attr("src"));
}); $galleryBtnLeft.click(function () {
galleryThumbnailScrollLeft=$galleryThumbnail.eq(0).scrollLeft(); galleryThumbnailWidth=$galleryThumbnail.eq(0).width(); $galleryThumbnail.animate({scrollLeft:galleryThumbnailScrollLeft-galleryThumbnailWidth*0.8},500);
}); $galleryBtnRight.click(function () {
galleryThumbnailScrollLeft=$galleryThumbnail.eq(0).scrollLeft(); galleryThumbnailWidth=$galleryThumbnail.eq(0).width(); $galleryThumbnail.animate({scrollLeft:galleryThumbnailScrollLeft+galleryThumbnailWidth*0.8},500);
});
//hide the nav var $topNav=$("#topNav"); var footerHeight=$("#FudanFooter").height(); var pageHeight=$("#FudanWrapper").height(); scrollTop=$(document).scrollTop(); if(scrollTop>pageHeight-footerHeight-$(window).height() && $(window).width()>991){
$topNav.fadeOut(200);
} else {
$topNav.fadeIn(200);
} $(document).on("scroll",function () {
footerHeight=$("#FudanFooter").height(); pageHeight=$("#FudanWrapper").height(); scrollTop=$(document).scrollTop(); if(scrollTop>pageHeight-footerHeight-$(window).height() && $(window).width()>991){ $topNav.fadeOut(200); } else { $topNav.fadeIn(200); }
});