|
- <!DOCTYPE html>
- <html lang="en-us">
- <head>
- <meta charset="utf-8">
-
- <title>Lightbox 2</title>
-
- <meta name="description" lang="en" content="Lightbox 2 is a script used to overlay images on the current page. It's a snap to setup and works on all modern browsers."/>
- <meta name="author" content="Lokesh Dhakar">
- <meta name="viewport" content="width=device-width,initial-scale=1">
-
- <script src="js/modernizr.custom.js"></script>
-
- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Karla:400,700">
- <link rel="stylesheet" href="css/screen.css" media="screen"/>
- <link rel="stylesheet" href="css/lightbox.css" media="screen"/>
-
- </head>
- <body>
-
- <div class="wrapper">
-
- <section id="intro" class="section intro-section">
- <header>
- <h1 class="logo">Lightbox<em class="version">2</em></h1>
- </header>
- <p class="author">
- by Lokesh Dhakar<br />
- <span class="author-links">
- <a href="https://twitter.com/intent/user?screen_name=lokesh">Follow me on Twitter</a>
- </span>
- </p>
- <p class="lead">
- Lightbox is a script used to overlay images on top of the current page. It's a <em>snap to setup</em> and works on <em>all modern browsers</em>.
- </p>
- </section>
-
- <section id="examples" class="section examples-section">
- <header>
- <h2 class="section-header">Examples</h2>
- </header>
-
- <h3>Single image</h3>
- <div class="image-row">
- <a class="example-image-link" href="img/examples/image-1.jpg" data-lightbox="example-1"><img class="example-image" src="img/examples/thumb-1.jpg" alt="thumb-1" width="150" height="150"/></a>
- <a class="example-image-link" href="img/examples/image-2.jpg" data-lightbox="example-2" title="Optional caption."><img class="example-image" src="img/examples/thumb-2.jpg" alt="thumb-1" width="150" height="150"/></a>
- </div>
-
- <h3 style="clear: both;">Image set</h3>
-
- <div class="image-row">
- <div class="image-set">
- <a class="example-image-link" href="img/examples/image-3.jpg" data-lightbox="example-set" title="Click on the right side of the image to move forward."><img class="example-image" src="img/examples/thumb-3.jpg" alt="Plants: image 1 0f 4 thumb" width="150" height="150"/></a>
- <a class="example-image-link" href="img/examples/image-4.jpg" data-lightbox="example-set" title="Alternately you can press the right arrow key."><img class="example-image" src="img/examples/thumb-4.jpg" alt="Plants: image 2 0f 4 thumb" width="150" height="150"/></a>
- <a class="example-image-link" href="img/examples/image-5.jpg" data-lightbox="example-set" title="The script preloads the next image in the set as you're viewing."><img class="example-image" src="img/examples/thumb-5.jpg" alt="Plants: image 3 0f 4 thumb" width="150" height="150"/></a>
- <a class="example-image-link last-example-image-link-in-set" href="img/examples/image-6.jpg" data-lightbox="example-set" title="Click the X or anywhere outside the image to close"><img class="example-image" src="img/examples/thumb-6.jpg" alt="Plants: image 4 0f 4 thumb" width="150" height="150"/></a>
- </div>
- </div>
- </section>
-
- <section id="download" class="section download-section">
- <header>
- <h2 class="section-header">Download</h2>
- </header>
-
- <a href="releases/lightbox2.6.zip" class="download-button">
- <div class="file">
- Lightbox
- <div class="version">
- v2.6
- </div>
- </div>
- <img src="img/box.png" alt="Box" class="box" width="170" height="168" />
- </a>
-
- <p>
- Lightbox2 is open-source.<br/>View and fork the code on <a href="https://github.com/lokesh/lightbox2">Github</a>.
- </p>
-
- <!--
- <h3>Changelog</h3>
- <ul class="changelog">
- <li><span class="version">v2.51</span> - <span class="date">4/20/12</span> - IE Fix: removed stray console.log statements. :-/</li>
- <li><span class="version">v2.5</span> - <span class="date">4/10/12</span> - Switch to jQuery. Code put in Github. Compiling with Coffeescript and SASS.</li>
- <li class="old"><span class="version">v2.05</span> - <span class="date">3/18/11</span> - Upgraded Prototype (now works in IE9) and Scriptaculous. Minor bug fixes.</li>
- <li class="old"><span class="version">v2.04</span> - <span class="date">3/9/08</span>
- <ul>
- <li>NEW - Upgraded Prototype from v1.4 to v1.6.0.2
- <li>NEW - Moved label text into configuration for easier localization</li>
- <li>UPDATED - Code cleaned up. Respect for the global namespace and native javascript objects.</li>
- <li>FIXED - Caption displays as "null" when viewing an uncaptioned image after viewing a captioned image.</li>
- <li>FIXED - Clicking 'close' button shifts layout as link focus' dotted line appears.</li>
- </ul>
- </li>
- <li class="old"><span class="version">v2.03.3</span> - <span class="date">5/21/07</span> - Support for horizontally scrolling pages. Added updateImageList method for ajax'y pages.</li>
- <li class="old"><span class="version">v2.03.2</span> - <span class="date">4/30/07</span> - Fixed animated gif support in IE/Opera.</li>
- <li class="old"><span class="version">v2.03.1</span> - <span class="date">4/18/07</span> - Fixed embed hiding. Overlay opacity var added to config. Image sets w/Imagemaps fix. Clearfix removed.</li>
- <li class="old"><span class="version">v2.03</span> - <span class="date">4/10/07</span> - Improved keyboard navigation. Animation off toggle. Hides Flash movies under overlay. Imagemap support. Valid CSS.</li>
- <li class="old"><span class="version">v2.02</span> - Fixed layout issues caused by multiline captions. Added keyboard navigation.</li>
- <li class="old"><span class="version">v2.01</span> - Centering in IE6 (any DOCTYPE) fixed. Smoothed out resize transition.</li>
- </ul>
- <a href="#" class="showOlderChanges">Show older changes</a> -->
- </section>
-
-
- <section id="how-to-use" class="section how-to-use-section">
- <header>
- <h2 class="section-header">How to use</h2>
- </header>
- <h3>Part 1 - Setup</h3>
- <ol>
- <li>Lightbox 2 uses the <a href="http://jquery.com/">jQuery</a> framework. Load jQuery and the Lightbox javascript files in the proper order.
- <pre><code><script src="js/jquery-1.10.1.min.js"></script>
- <script src="js/lightbox.js"></script>
- </code></pre>
- </li>
- <li>Include the Lightbox CSS file.
- <pre><code><link href="css/lightbox.css" rel="stylesheet" />
- </code></pre>
- </li>
- <li>Check the CSS and make sure the referenced <code>prev.png</code> and <code>next.png</code> files are in the right location. Also, make sure the <code>loading.gif</code> and <code>close.png</code> files as referenced near the top of the <code>lightbox.js</code> file are in the right location.</li>
- </ol>
- <h3>Part 2 - Activate</h3>
- <ol>
- <li>Add a <code>rel="lightbox"</code> attribute to any link tag to activate Lightbox.
- <pre><code><a href="img/image-1.jpg" rel="lightbox" title="my caption">image #1</a>
- </code></pre>
- <em>Optional: </em>Use the <code>title</code> attribute if you want to show a caption. </li>
- <li>If you have a set of related images that you would like to group, follow step one but additionally include a group name between square brackets in the rel attribute.
- <pre><code><a href="img/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
- <a href="img/image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
- <a href="img/image-3.jpg" rel="lightbox[roadtrip]">image #3</a>
- </code></pre>
- No limits to the number of image sets per page or how many images are allowed in each set. Go nuts!</li>
- </ol>
- </section>
-
-
- <section id="questions" class="section questions-section">
- <header>
- <h2 class="section-header">Have questions?</h2>
- </header>
- <p>
- For personal support issues and feature requests please post a message in the forums. I do not have time to personally respond to support emails, please use the forum. Thanks!
- </p>
- <p>
- For bug reports, send a note with the browser you are using and the version of Lightbox to lokesh.dhakar@[ google's email service ].com.
- </p>
- <a href="http://lokeshdhakar.com/forums/" class="forums">
- <img src="img/speech-bubbles.png" alt="Speech bubbles" class="speech" width="110" height="80"/>
- <div class="link">
- Lightbox<br/>
- <span class="sub">Forums</span>
- </div>
- </a>
- </section>
-
- <section id="doante" class="section donate-section">
- <header>
- <h2 class="section-header">Donate</h2>
- </header>
- <p>
- Lightbox is completely free to use. If you're using Lightbox on a commercial project and feeling generous, consider a small donation. Thanks!
- </p>
- <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
- <fieldset>
- <input type="hidden" name="cmd" value="_xclick">
- <input type="hidden" name="business" value="lokesh.dhakar@gmail.com">
- <input type="hidden" name="item_name" value="Donation for Lightbox">
- <input type="hidden" name="no_note" value="1">
- <input type="hidden" name="currency_code" value="USD">
- <input type="hidden" name="tax" value="0">
- <input type="hidden" name="bn" value="PP-DonationsBF">
- <input type="image" src="img/donate.png" name="submit" class="donate-button" alt="Make payments with PayPal - it's fast, free and secure!">
- </fieldset>
- </form>
- </section>
-
- <section id="sharing" class="sharing">
- <a href="https://twitter.com/share" class="twitter-share-button" data-via="lokesh" data-size="large">Tweet</a>
- <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
- </section>
-
-
- <script src="js/jquery-1.10.1.min.js"></script>
- <!-- <script src="js/jquery-2.0.2.min.js"></script> -->
- <script src="js/jquery.smooth-scroll-1.4.10.min.js"></script>
- <script src="js/lightbox.js"></script>
-
- <script>
- jQuery(document).ready(function($) {
- $('#nav a').smoothScroll({
- speed: 1000
- });
-
- $('.showOlderChanges').on('click', function(e){
- $('.changelog .old').slideDown('slow');
- $(this).fadeOut();
- e.preventDefault();
- })
- });
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-2196019-1']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
-
- </script>
-
- </div>
-
- </body>
- </html>
|