Hi Octavio,
Photoswipe is the most popular image gallery plugin that I know. Several app-builders offer Photoswipe pre installed. You only need to setup. There is also the Galleria (http://galleria.io/) which is good too, but I prefer Photoswipe. Galleria is more easy (less files and details), so I’m trying to install it now.
Could you explain the process to implement a plugin in the Mobione? I would like to check the procedures and verify what´s wrong (I see the images but I cannot change them).
– Add JS files for “javascript libraries” option of startup screen
– Add CSS file to CSS Style Sheets of startup screen
– Include the reference line (<script src=”galleria/galleria-1.2.8.min.js”></script>) in the custom html of the gallery screen (or I need to do this in the custom html of the startup screen?)
– Create a html widget and insert the code:
<div id="galleria">
<img src="pic_jc0.png">
<img src="pic_jc1.png">
<img src="pic_jc2.png">
</div>
<script>
Galleria.loadThemeGalleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
Galleria.run('#galleria');
</script>
– Add images as “Additional Files” of startup screen
That´s it?
Thanks