1 <%@ Page Language="C#" MasterPageFile="~/MasterPages/SamplePageWithCode.master"
2 AutoEventWireup="true" CodeFile="LightBox.aspx.cs"
3 Inherits="_05_OtherSamples_LightBox"
4 Title="Lightbox JS: Image Overlay Script" %>
5 <asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
6 <script type="text/javascript" src="/ScriptLibrary/Lightbox/lightbox.js"></script>
7 <a href="/Images/pic_closed.jpg" rel="lightbox" title="A Closed picture">
8 <img src="/Images/pic_closed.jpg" width="150"
9 alt="Click me for bigger picure" border="0" />
10 </a>
11 <br />
12 <a href="http://thumbnails.alexa.com/image_server.cgi?size=large&url=timheuer.com"
13 rel="lightbox"><img src="http://thumbnails.alexa.com/image_server.cgi?size=small&url=timheuer.com" border="0" /> Preview timheuer.com</a>
14 <br />
15 <a href="http://thumbnails.alexa.com/image_server.cgi?size=large&url=AZGroups.com"
16 rel="lightbox">Preview AZGroups.com</a>
17 <br />
18 <a href="http://thumbnails.alexa.com/image_server.cgi?size=large&url=microsoft.com"
19 rel="lightbox">Preview microsoft.com</a>
20 <br />
21 <br /><br />
22 Using <a href="http://www.huddletogether.com/projects/lightbox/">Lightbox JS</a>
23 <br />
24 </asp:Content>
25
26
|