Save image for offline use html 5 web application

I have a large set of images about 60 MB in size. I want to use these images offline in an html5 web application. I currently store image data in a sqlite table, but it seems that ipad safari does not support more than 50 MB of data.

Is there a way to store data in folders on client side / ipad and then use it through javascript code, or is there an alternative way to do this.

+3
source share
1 answer

You can use the file system API, however, restrictions may vary between browsers and OS. https://developer.mozilla.org/en-US/docs/WebGuide/API/File_System/Introduction

0
source

Source: https://habr.com/ru/post/1783354/


All Articles