Need some help guys. I've got an animation that I've distilled down to its simplest form, and it's still really slow in FF (all versions). It absolutely flies in IE, Safari, and Chrome. Really smooth, really fast. But in FF it is choppy.
Here's the code:
<!DOCTYPE html>
<head runat="server">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
</head>
<body>
<script type="text/javascript">
var img = new Image();
img.src = "dice3high.png";
var dx = 3;
var imgW = 185;
var imgH = 2988;
var ctx;
var x = -4.5;
var y2 = 0;
var y = -1772;
var CanvasXSize = 185;
var CanvasYSize = 400;
function contextSet() {
ctx = document.getElementById('canvas').getContext('2d');
}
$(document).ready(function () {
window.requestAnimFrame = (function () {
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
function (callback) {
window.setTimeout(callback, 1000 / 60);
};
})();
contextSet();
draw();
});
function draw() {
setTimeout(function() {
requestAnimFrame(draw);
}, 1000 / 590);
if (imgH <= CanvasYSize) {
if (y > (CanvasYSize)) { y = 0; }
if (y > (CanvasYSize - imgH)) { ctx.drawImage(img, x, y - CanvasYSize + 1, imgW, imgH); }
}
else {
if (y > (CanvasYSize)) { y = CanvasYSize - imgH; }
if (y > (CanvasYSize - imgH)) { ctx.drawImage(img, x, y - imgH + 1, imgW, imgH); }
}
ctx.drawImage(img, x, y, imgW, imgH);
y += dx;
y2 += dx;
};
</script>
<canvas id="canvas" width="185" height="400" style="z-index:1;"></canvas>
</body>
</html>