File: example.html

Recommend this page to a friend!
  Classes of John Diaz   jQuery Background Loader Slideshow   example.html   Download  
File: example.html
Role: Example script
Content type: text/plain
Description: Example file
Class: jQuery Background Loader Slideshow
Display a responsive image slideshow
Author: By
Last change: Initial commit
Date: 2 years ago
Size: 784 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html lang="en"> <head> <title>Example background SlideShow</title> <script src="javascript/jquery-1.9.1.js"></script> <script src="javascript/jquery-ui-1.10.3.custom.min.js"></script> <script src="javascript/lazyLoad.slideShow.1.0.0.js"></script> <link href="css/jquery-ui.min.css" rel="stylesheet" type="text/css" /> <link href="css/style.css" rel="stylesheet"> </head> <body> <div> <div id="example-container" style="margin:10px auto; width:600px; background:#333; height:270px;"> </div> <script type="text/javascript">// <![CDATA[ $(function($) { $("#example-container").slideShow({ imagePath: "images/", useAsBackground: false, images: ["1.jpg","2.jpg"] }); }); // ]]> </script> </div> </body> </html>