Wijmo UI for the Web
Quick Start
Wijmo User Guide > Widgets > Gallery > Quick Start

In this quick start, you'll learn how to add the Gallery widget to an HTML project using HTML markup and jQuery script.

  1. To create a new HTML page in your favorite text editor, add the following code and save the document with an .html extension.

    Drop down and copy markup

    Paste in your favorite text editor.
    Copy Code
    <!DOCTYPE HTML>
    <HTML>
    <head>
    </head>
    <body>
    </body>
    </HTML>
    
  2. Add links to the dependencies to your HTML page within the <head> tags. Find the latest dependencies in the content delivery network (CDN) file at wijmo cdn.

    Drop down and copy references to paste inside the head tags

    References
    Copy Code
    <!--Theme-->
    <link href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" />
    
    <!--Wijmo Widgets CSS-->
    <link href="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20162.99.min.css" rel="stylesheet" type="text/css" />
    
    <!--RequireJs-->
    <script type="text/javascript" src="http://cdn.wijmo.com/external/require.js"></script>
  3. Add the following markup within the <body> tags to create the widget. The <div> element creates the widget, and we call its id attribute in jQuery to initialize it.

    Drop down and copy markup to paste inside the body tags

                
    Markup
    Copy Code
    <div id="gallery1" class="">
        <ul class="">
            <li class=""><a href="Images/sports1.png">
                <img alt="1" src="Images/sports1.png" title="Word Caption 1" />
            </a></li>
            <li class=""><a href="Images/sports2.png">
                <img alt="2" src="Images/sports2.png" title="Word Caption 2" />
            </a></li>
            <li class=""><a href="Images/sports3.png">
                <img alt="3" src="Images/sports3.png" title="Word Caption 3" />
            </a></li>
            <li class=""><a href="Images/sports4.png">
                <img alt="4" src="Images/sports4.png" title="Word Caption 4" />
            </a></li>
            <li class=""><a href="Images/sports5.png">
                <img alt="5" src="Images/sports5.png" title="Word Caption 5" />
            </a></li>
            <li class=""><a href="Images/sports6.png">
                <img alt="6" src="Images/sports6.png" title="Word Caption 6" />
            </a></li>
            <li class=""><a href="Images/sports7.png">
                <img alt="7" src="Images/sports7.png" title="Word Caption 7" />
            </a></li>
            <li class=""><a href="Images/sports8.png">
                <img alt="8" src="Images/sports8.png" title="Word Caption 8" />
            </a></li>
            <li class=""><a href="Images/sports9.png">
                <img alt="9" src="Images/sports9.png" title="Word Caption 9" />
            </a></li>
        </ul>
    </div>
  4. Within the <head> tags, below the references, add the following script to initialize the widget and set the size and number of thumbnail images.

    Drop down and copy script to paste inside the head tags

                
    Script
    Copy Code
    <script type="text/javascript">
        requirejs.config({
            baseUrl: "http://cdn.wijmo.com/amd-js/3.20162.99",
                paths: {
                    "jquery": "jquery-1.11.1.min",
                    "jquery-ui": "jquery-ui-1.11.0.custom.min",
                    "jquery.ui": "jquery-ui",
                    "jquery.mousewheel": "jquery.mousewheel.min",
                    "globalize": "globalize.min"
                }
        });
    </script>
    
    <script id="scriptInit" type="text/javascript">
        require(["wijmo.wijgallery"], function () {
            $(document).ready(function () {
                $("#gallery1").wijgallery({
                    showControlsOnHover: false,
                    thumbsDisplay: 4,
                    thumbsLength: 150
                });
            });
        });
    </script>
  5. Within the <head> tags, above the script to initialize the widget, set the size of the widget using CSS.

    Drop down and copy markup to paste inside the head tags

                
    Style
    Copy Code
    <style type="text/css">
        #gallery1
            {
                width: 650px;
            }
    </style>
  6. Save your HTML file and open it in a browser. The widget appears like the following live widget.
See Also

Reference