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

m (new revised)
(new Template)
Line 6: Line 6:
 
//add revised
 
//add revised
 
var nowDate=new Date();
 
var nowDate=new Date();
$("meta[name='copyright']").after("<meta name='revised' content='Miyo Yang,6/11/2018,10/8/2018' />");
+
$("meta[name='copyright']").after("<meta name='revised' content='Miyo Yang,"+[nowDate.getMonth()+1]+"/"+nowDate.getDate()+"/"+nowDate.getFullYear()+"'/>");
 
 
 
//smooth scroll href
 
//smooth scroll href
$('a').click(function(){
+
$('a').click(function(e){
 +
e.preventDefault();
 +
console.log($(this).attr("href"));
 +
if(window.location.search==""){
 +
window.location.href=$(this).attr('href');
 +
}else{
 +
window.location.href=""+$(this).attr('href')+"?lang=cn";
 +
}
 
     if(location.pathname.replace(/^\//,'')==this.pathname.replace(/^\//,'')&&location.hostname==this.hostname){
 
     if(location.pathname.replace(/^\//,'')==this.pathname.replace(/^\//,'')&&location.hostname==this.hostname){
 
var $target=$(this.hash);
 
var $target=$(this.hash);

Revision as of 10:50, 6 August 2018

$(function(){

//change shortcut icon $('link[rel="shortcut icon"]').attr('href','https://static.igem.org/mediawiki/2018/1/1c/T--SSTi-SZGD--Logo.png');

//add revised var nowDate=new Date(); $("meta[name='copyright']").after("<meta name='revised' content='Miyo Yang,"+[nowDate.getMonth()+1]+"/"+nowDate.getDate()+"/"+nowDate.getFullYear()+"'/>");

//smooth scroll href $('a').click(function(e){ e.preventDefault(); console.log($(this).attr("href")); if(window.location.search==""){ window.location.href=$(this).attr('href'); }else{ window.location.href=""+$(this).attr('href')+"?lang=cn"; }

   	if(location.pathname.replace(/^\//,)==this.pathname.replace(/^\//,)&&location.hostname==this.hostname){

var $target=$(this.hash); $target=$target.length&&$target||$('[name='+this.hash.slice(1)+']'); if($target.length){ var targetOffset=$target.offset().top; $('html,body').animate({ scrollTop:targetOffset-80 },1000); return false; } } }); });