html5 canvas general performance tips

18,511

Solution 1

Also see this canvas performance optimization article on html5rocks, which contains jsperf data which includes mobile browsers.

Solution 2

You can read Making an iPad HTML5 App & making it really fast by Thomas Fuchs

The key points he make:

  1. Images slow things down immensely– get rid of them
  2. Avoid text-shadow & box-shadow
  3. Hardware-acceleration is quite new… and buggy (concurrent animations is limited)
  4. Avoid opacity if possible (sometimes interferes with hardware-accelerated rendering)
  5. Use translate3d, not translate (the latter is not hard-accelerated)

Some other points that can improve performance significantly:

  • use getImageData as infrequently as possible (major slowdown) [2]
  • combine more than one canvas in order to repaint smaller parts that are changing more frequently

You can also benchmark your app with Chrome/Firebug Profile can show you which functions are slow.

[2] http://ajaxian.com/archives/canvas-image-data-optimization-tip

Solution 3

A couple of more links:

It's hard to give any specific tips as I'm not familiar enough with your game. You might want to split up rendering to multiple layers, though. This makes sense particularly if you have some static elements there. This way you can avoid some clearing and end up with nicer code overall.

Share:
18,511
clamp
Author by

clamp

hello

Updated on June 14, 2022

Comments

  • clamp
    clamp about 2 years

    I am developing a game for html5 canvas while mainly targeting mobile devices. The canvas is resized to the biggest available resolution, so that it almost makes a fullscreen game.

    On an ipad that would be a 1024x786 canvas; at a resolution like this I notice a significant drop in framerate. On smaller resolution like 480x320 on iphone the game runs smooth! I guess this is because the device is fillrate limited.

    Anyhow I would like to optimize as much as possible. I would be very grateful if you could post any general performance tips that you have for html5 canvas development.

  • clamp
    clamp over 13 years
    thanks for the link. infact i have already read this one. unfortunately my game relies heavily on images so i cant really get rid of them. i will try to respect the other rules though!
  • M. Ryan
    M. Ryan over 12 years
    This is basically the best article on the subject that can exist.
  • MONK
    MONK about 10 years
    This article is misleading as an answer of this question : its topic is not the canvas but generally html5 coding. Most of the points given here apply to problems entirely separate from the canvas, like css properties of html elements. Using and caching images (as an offscreen canvas) is actually a good practice when drawing complex shapes to the canvas.