1

(495 replies, posted in Juicebox-Pro Support)

My feature requests:

1) To be able to play MP4 video from JuiceBox (my galleries are mixed photos & video).  I'm not talking about embedding YouTube/Vimeo/etc - I just mean to be able to play a static MP4 file on my web server.

2) To be able to programmatically generate a gallery without having to create config.xml/config.json.  I'd like to generate the HTML and specify the images in the juicebox constructor, instead of having *2* dynamic pages (one to for the page, and a second for the config.xml). 

Otherwise, thanks for the great gallery.  :-)

Hello -
Is there any way to create a Juicebox gallery without having a config.xml / config.json?  My website is fully dynamic (i.e. image sets are loaded from a database, images/thumbnails stored in S3), and it would be great if I could just specify the image list as a parameter to the juicebox constructor, like this:

    new juicebox({
        containerId: 'juicebox-container',
        galleryWidth: '100%',
        galleryHeight: '100%',
        backgroundColor: '#222222',
        configUrl: '',
        images: [
            {
                imageURL: "images/20130803_100915.jpg",
                thumbURL: "thumbs/20130803_100915.jpg",
                linkTarget: "_blank",
                title: "IMG_0386",
                caption: "Caption Text"
            },
            {
                imageURL: "images/20130803_100916.jpg",
                thumbURL: "thumbs/20130803_100916.jpg",
                linkTarget: "_blank",
                title: "IMG_0386",
                caption: "Caption Text"
            },
            .... ETC...MORE IMAGES HERE ...
        ]
        });

Is this possible?  Any plans to implement this? 

Otherwise, thanks for a great gallery -- I was dreading having to write my own.  :-)