public
Description: Facebook-style lightbox, built in jQuery
Homepage: http://famspam.com/facebox/
Clone URL: git://github.com/defunkt/facebox.git
Click here to lend your support to: facebox and make a donation at www.pledgie.com !
defunkt (author)
Tue Mar 11 22:09:12 -0700 2008
commit  e55ccdbcefe5c897946805c77dcfefe212f19d14
tree    c241049d2b271921ceff548193fb9bd330469eb2
parent  f4eee0a18e2c2f147b5d96c89969eef43ebc69a8
facebox / test.html
100644 53 lines (50 sloc) 1.369 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>Facebox 1.0</title>
  <link href="facebox.css" media="screen" rel="stylesheet" type="text/css" />
  <style>
#facebox {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: left;
  margin-top: 50px;
}
  </style>
</head>
 
<body>
  <div id="facebox">
    <div class="popup">
      <table>
        <tbody>
          <tr>
            <td class="tl"/><td class="b"/><td class="tr"/>
          </tr>
          <tr>
            <td class="b"/>
            <td class="body">
              <div class="content">
                <div class="image"><img src="/facebox/stairs.jpg" /></div>
              </div>
              <div class="footer">
                <a href="#" class="close">
                  <img src="/images/closelabel.gif" title="close" class="close_image" />
                </a>
              </div>
            </td>
            <td class="b"/>
          </tr>
          <tr>
            <td class="bl"/><td class="b"/><td class="br"/>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</body>
</html>