Can I run an HTML5 * -based client application using local storage?

Is it possible to run an HTML5 based application using an element <canvas>for local resources only? that is, without the need to connect to a remote server to download bitmaps, objects, media, etc., but pull them out of the local storage instead?

+3
source share
2 answers

In a word. Yes. But not from local storage, if you mean a couple of local storage values, an alternative to session storage, available in HTML5.

If you want to save them locally in the file structure and use them, then yes.

, , w3.org.

http://diveintohtml5.ep.io/offline.html

+2
0

All Articles