1

(9 replies, posted in Juicebox-Pro Support)

Yet the juicebox-1.4.1 version allowed Expand Gallery in an iFrame and I used frequently and it was effective.
The Full-Screen API is now supported by all recent desktop browsers, including IE11. There’s little support on mobile, but those browsers normally run in an almost full-screen view.

2

(9 replies, posted in Juicebox-Pro Support)

That's true. There are limitations to loading Juicebox galleries into iframes.
What are the reasons for this limitation.

3

(495 replies, posted in Juicebox-Pro Support)

API methods :

1) toggleInfo ()
onInitComplete  I use : $('div.jb-bb-btn-show-info').trigger('click');

2) getJbBtnStatus (): Object
{ShowInfo: true / false,
ShowList: true / false,
autoPlay: true / false,
audioPlaying: true / false,
fullScreen: true / false}
to get the status of  jb-bb-btn-???

For now I use  the "title" attribute, using the plug-in 'tipped.js,' to display  a clear and detailed information about  button's action depending its status.

3) if config.backbuttonposition === "OVERLAY" do not hide it when Hide Information

4) an API method to hide all objects except image

I do it this way :

        $('body').on({
            mouseenter: function() {
                $visible_collection.css({'visibility':'visible', 'opacity':1});
            },
            mouseleave: function() {
                $visible_collection.css({'visibility':'hidden', 'opacity':0});
            }
        });

Thanks for this JuiceBox's  wonderfull world

I am sorry;
I find a nice solution with window.location.search and it's run :

        <!--START JUICEBOX EMBED.-->
        <script src="jbcore/juicebox.js"></script>
        <script>
            new juicebox({
                containerId : 'juicebox-container',
                galleryWidth: '100%',
                galleryHeight: '100%',
                backgroundColor: 'rgba(51,51,51,1)',
                backButtonUrl: '../index.html'+ window.location.search
            });
        </script>
        <div id="juicebox-container"></div>
        <!--END JUICEBOX EMBED.-->
<!--START JUICEBOX EMBED-->
        <script src="jbcore/juicebox.js"></script>
        <script>
            new juicebox({
                containerId : 'juicebox-container',
                galleryWidth: '100%',
                galleryHeight: '100%',
                backgroundColor: 'rgba(51,51,51,1)',
                backButtonUrl: '../index.html?scrollableindex=1'
            });
        </script>
        <div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->

The link [../index.html?scrollableindex=1]  become  [../index.html] in the builded page.