In this quick start, you'll learn how to add the Gallery widget to an HTML project using HTML markup and jQuery script.
Drop down and copy markup
Paste in your favorite text editor. |
Copy Code |
---|---|
<!DOCTYPE HTML> <HTML> <head> </head> <body> </body> </HTML> |
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> |
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> |
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> |
Drop down and copy markup to paste inside the head tags
Style |
Copy Code |
---|---|
<style type="text/css"> #gallery1 { width: 650px; } </style> |