Team:SYSU-China/animat.js

From 2013.igem.org

Revision as of 12:55, 12 September 2013 by Scelta (Talk | contribs)

$.preloadImages("WIKI-MASCOT-RUNNING-RIGHT.gif", "WIKI-MASCOT-RUNNING-LEFT.gif"); $(document).ready(function(){ var plength=0; var target=$("li.column"); var img=$("#animat span"); var mid=img.offset().left + img.width()/2;

	target.mouseenter(function(){

var length=$(this).offset().left + $(this).width()/2 - mid; img.stop(); if(length > plength) { $("#animat span img").attr({"src" : "WIKI-MASCOT-RUNNING-RIGHT.gif"}); } else { $("#animat span img").attr({"src" : "WIKI-MASCOT-RUNNING-LEFT.gif"}); } plength=length; img.animate( {left:length}, 500, function(){ $("#animat span img").attr({"src" : "WIKI-MASCOT-STAND.png"});} );

}); var win_width = $(window).width()/2 - $("#address").width()/2; $("#address").css("left",win_width); });