I'm planning to create a game for Windows Phone
. To make it simpler to port it, I want it to be HTML
-based and as it's an online game, it get's the html
pages via http
. But to minimize the data use, I want all the images in the game to be in the phones storage. So how can I create a website displayed in the Internet Explorer
control that uses local images?
Asked
Active
Viewed 45 times
1
-
Would HTML localStorage be an option to store the base64 encoded images? Mobile IE10 does support it. – sibbl Feb 06 '14 at 10:18
-
So you mean writing the images into the local storage via javascript and reading them out? I'd prefer the user to download the images together with the app, but I'd be happy to see an example code as answer anyway. – jalgames Feb 06 '14 at 11:08