I made a html/script that draws an image and on mouse hover, images over top and clearing them when mouse is moved away from the rectangular region.
Works 1000000000% in FireFox :P, any other browser? nope not a chance.
But I am particularly interested with the fact that it shows only white on Safari in iPhone 4 iOS 4.3 and iPad 2 iOS 4.3.
Is anyone aware of any considerations or changes that need to be made to make canvas and jscript in general behave as intended?
Some small portions:
window.onload = function()
{
canvas = document.getElementById("canvas");
context = canvas.getContext("2d");
context.drawImage(map, 0, 0);
};
There is obviously considerably more, but I would only see the syntax being an issue, I doubt Safari and FireFox disagree with each other on that?
Any help is greatly appreciated (from my searches Safari supposedly supports canvas).
context.drawImage(map, 0, 0);isn't happening on iOS becase map has not completed its onload yet. It is also possible that handleHover never fires on iOS since there may be no onmousemove. – Simon Sarris Apr 14 '11 at 13:34