This bit of code:
$(div).stop().animate({
fontSize: "+=20%",
}, {
duration: duration2,
easing: "easeOutBack"
});
should increase font size by 20%, and it does on all browsers except Chrome, where it decreases font size for some reason.
Specifically the page I'm working with is: http://dl.dropbox.com/u/67774614/letters/letters.html . Type letters to drop them, then the letters should increase in font size as well as jumping and going red on mouseover. On Chrome they should (incorrectly) decrease in font size.
The problem is on line 82-90 in this script: http://tny.cz/49bc46f7
Here's a fiddle as suggested: http://jsfiddle.net/cZEzy/1/


console.log()statements to your script to see what Chrome thinks your default font-size is. Try setting a default font-size maybe something like1em/16pxfor example. So Chrome knows from what to increase the font to+=20%. – François Wahl Mar 16 at 22:44