17 comments found.
how many images can you add to this
Thank you for the interest! You can add as many images as you want. At the same time, you can limit the number of objects present on the screen at the same time. For example, your gallery can have 100 photos but display no more than 40 flying objects at the same time. All this is configured in the settings.
hello i just buy the product. is there option to remove item from gallary by click or double click instead of zoom or i put some button layer on image that by click remove the item from gallary ? thanks
Hi! Thanks for purchase! There is no such feature yet, but it can be done as custom work. We can discuss your needs via Facebook messenger (send message on www.facebook.com/activiotic) or by email (send private message on Codecanyon). For now, to remove object for some time, just swipe it so that it leaves screen area.
hello , another question. in mobile the image zoom is very small. is there an option to remove the right left arrows and zoom the pic so it fits full stage of the mobile screen? thanks for the help
No, unfortunately there is no option to remove these arrows in current version.
Hello,
I’m kind of struggling with installation. Could you help, please?
Thank you!
Of course! Did you try to install it on your website or local machine? Could you please give me the link to website where you are testing it?
Hello, I’m interested in your script, but I need different colors, images, menu, etc., so I want to make sure it’s easy to customize. I cannot write the code but I’m experienced in HTML. Can I replace all of your images with my own? Also I’m not sure if the page has a menu on top. I need a menu and a footer. I’m also wondering if this script is supposed to be alone on the page or it could be used as a part of the page, like a frame or something.
Thank you so much in advance!
Hi! Thanks for your interest! Yes, it’s fully customizable. You can use your own images, set motion parameters etc. Here is the full list of settings: http://activiotic.com/products/air-gallery/settings.html This pack also contains graphic sources in psd & cdr format. So you’ll be able to make changes in current graphics. Or you can use it as a guide to create your own graphics. Of course, this gallery can be used as a part of a web page. For example, here it is used as a header: http://activiotic.com/products/air-gallery/usage.html. You can even create multiple galleries on the same page. All usage examples are included. This gallery does not have it’s own top menu or footer because it is considered as a plugin for your web page. You can easily integrate gallery into your custom HTML layout. If you have any questions about installing and configuring the gallery, I’ll be happy to help.
Thank you so much for your response! I purchased it.
Hello! I really like your plugin. I have a question: can I change the balloons’ graphics? I would like to use Christmas tree balloons instead of balloons, it would be a Christmas gallery.
Yes, you can change it easily! Notice the setting AIR_OBJECTS_FOLDER: http://activiotic.com/products/air-gallery/settings.html
Thank you for your response! Can you set the pictures so that they fall from above? I would like to use snowflakes that would be instead of balloons …
Yes, I can. For that I just need to remove a few strings in the source code. Just send me private message after purchasing. I will send you a file that needs to be replaced.
Will this library support high quality images? I have over 1000 images I want to share with family members. This photos are 20+MB each. will this plugin work? Is it going to take forever to load?
It will work. But when you use it online, pictures will be quite long to load. I see no reason to use such large images. The modern Internet is not yet fast enough to use such images on a web page. I recommend to batch convert them into FullHD JPG format. To do this, you can use some online converter or Photoshop.
Hello. I hope you have great sales on this site. Follow me too
Thanks! 
Once you open an image, if we wanted to allow sharing, i.e. FB, twitter, pinterest or email, how would we implement something like that? I will buy this plugin an would like to allow my visitors to share the images… Thanks.
Hi! At the moment there is no image sharing feature.
is this visual composure supported plugin. ?
No, it’s pure javascript plugin. No relation with Visual Composer.
del
Is there a way to reposition the full screen button and add a couple more custom buttons?
If you need more flexible settings, you can use this hack:
function repositionFullscreenButton(galleryDivID, styleObject)
{
var divs,
galleryDiv = document.getElementById(galleryDivID),
check = function()
{
divs = galleryDiv.querySelectorAll('div');
if(divs.length > 1)
{
clearInterval(intervalID);
var style = divs[1].style;
for(var propName in styleObject) style[propName] = styleObject[propName]
}
},
intervalID = setInterval(check, 50);
check()
}
Usage examples:
repositionFullscreenButton('gallery_container', {right: '20px'})
repositionFullscreenButton('gallery_container', {left: '20px', bottom: '20px'})
repositionFullscreenButton('gallery_container', {top: '10px', left: '10px'})
Adding custom buttons is not provided in the settings, but you can insert web elements manually. Just put some web element into the first child of the gallery’s DIV.
Example of placing a red rectangle in the top-left corner:
var gallerySubDiv = document.getElementById('gallery_container').querySelectorAll('div')[0];
var customButton = document.createElement('div');
customButton.style.position = "absolute";
customButton.style.top = "20px";
customButton.style.left = "20px";
customButton.style.width = "40px";
customButton.style.height = "40px";
customButton.style.background = "red";
gallerySubDiv.appendChild(customButton);
Dear Sir,
I want to change photos movement, I was checked code and found j query is compressed, can you send full jquery?
I want to make picture movement from left to right…
Can you please help me?
Regards,
Hi! Thanks for purchasing! I don’t use jquery. You can find non-compressed version in the folder “Sources/for_developers”. There’s quite a lot of JavaScript code. Feel free to contact me if you need some help with “left to right movement”.
Hey, this looks like an awesome script. It would be great if you had a true CMS dashboard to make all the Gallery changes. Even better would be if you also included a way to add users whereby this can be sold as SaaS. Your sales will blow through the roof 
Thanks for your feedback! I’ll definitely think about SaaS. As for CMS, I’ll probably make a Wordpress version in the future.
The idea of the Javascript version was to make everything as simple as possible. In addition, in the Javascript category is not allowed to place plug-ins that require server-side scripts and databases. By the way, Air Gallery has an option that allows using the server script to get a list of images in the folder.
We’re trying to use Air Gallery on our system which uses handlebar scripts pointing to a cdn to get image sources. Not sure how that will work.
Hi!
Air Gallery should somehow get a list of image URLs. For that it needs to know image folder and image list. Image list can be obtained by server script that scans the image folder. You can use your own server script, which generates full paths to images. If your handlebar solution allows you to get image list with javascript, you can simply specify this list manually in the settings, that are javascript code.
Here is more info: http://activiotic.com/products/air-gallery/usage.html
Here is complete list of settings: http://activiotic.com/products/air-gallery/settings.html
Tried and tested. It works! Great stuff!
Hi can I use youtube video background? Please confirm. If yes, I will buy this awesome plugin. Thanks!
Video support will be added in the next update. I will notify you when this feature is done.
Nevertheless, this is possible in the current version, too.
The essence of this technique is to remove the background of the gallery that is on top of the video:
1. embed YouTube video in your page;
2. place an empty div on top of the video;
3. initialize the gallery inside this div;
4. In gallery settings, delete the option BACKGROUND_IMAGE.
Here is the info about how to create gallery: http://activiotic.com/products/air-gallery/usage.html
Thanks for your reply. Please confirm that if I want to combine video script with this one, is it possible? Could you help me? If yes, then I am going to buy your script right now. Thanks!
For example, if you have full-screen video and want to place gallery over it, just create new div-element:
<div id="gallery_container" style="position: fixed; width: 100%; height: 100%;"> </div>Then create gallery within this div:
var gallery = new AirGallery("gallery_container", settings)Don’t specify BACKGROUND_IMAGE in the settings to not overlap the video.
Feel free to contact me via private message or here. I’ll be happy to help you.
I have tried to combine your script with mentioned 2 plugin. And in my page, many jquery plugin used.
Your quick response is highly appreciated.
Thanks!
I combined it with Tubular. It works. Perhaps the cause of the problem is that Tubular places video at some z-index. Please send me a private message so I can send you working example by email.
By the way, I just updated the plug-in. Please download the updated version. It does not support a video yet, but it probably eliminates the cause of your problems. Anyway, I’m ready to send you a working example of combining gallery with Tubular plugin.
Just combined it with this:
https://github.com/rochestb/jQuery.YoutubeBackground.
It works too.
Here is the demo: http://activiotic.com/products/air-gallery/video.html
Nice one! 
Thanks! 
Congratulations! Good Luck With Sale 
Thank you!