It is simple and easy to deploy Ixhibition, though if more detail is required, please see the Docs.
Note: Multiple galleries on the same page is supported. See Custom ID

  1. Firstly, a div tag element with the ID "ixhibition" is required, along with an explicit height and width set. (Obviously Ixhibition.js must be included in the HTML document)
    
    <div id="ixhibition" style="height: 640px; width: 320px;"></div>
    
  2. Then, within the script tags or associated javascript file, an instance of ixhibition is created, and an array of image URLs is provided to it via the setImageList() function.
    
    var ixb = Ixhibition();
    
    var imgList = [
        "images/image1.jpg",
        "images/image2.jpg",
        "images/image3.jpg",
        "images/image4.jpg"
    ];
    
    ixb.setImageList(imgList);
    
  3. Finally, the duration can be set via the setDisplayDuration() function along with the desired animation option using loadOption().
    
    ixb.setDisplayDuration(4);
    
    ixb.loadOption("ixb_4");
    
    A set of default animation options are provided. See "Defaults".

This guide only provides a quick way of setting up and using Ixhibition, however there is far more control and options available. Please see the Docs for more information.