I have a client that receives large number of base64 images from a server, and I need to display them as slider image viewer. What's the best approach to do it? Each image size is around 30kb, and there are around 200 images. Thanks!
Asked
Active
Viewed 124 times
0
-
Add an image tag with the base64 string: `
` – Antony Jul 21 '17 at 14:20
1 Answers
1
You can try to store either in localStorage or IndexedDB. These links can be helpful:
- PouchDB You can use it to abstract IndexedDB complexity
- About storage and service workers

Marlon Barcarol
- 508
- 5
- 12