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

(Reasonable classification)
(add revised)
Line 3: Line 3:
 
//change shortcut icon
 
//change shortcut icon
 
$('link[rel="shortcut icon"]').attr('href','https://static.igem.org/mediawiki/2018/1/1c/T--SSTi-SZGD--Logo.png');
 
$('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
 
//smooth scroll href

Revision as of 03:13, 3 July 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(){

   	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 },1000); return false; } } }); });