File: example.html

package info (click to toggle)
slimbox 2.04-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 196 kB
  • sloc: javascript: 229; makefile: 7
file content (33 lines) | stat: -rw-r--r-- 887 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html>
<html>
<head>
	<title>Slimbox 2 example page</title>
	<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
	<script type="text/javascript" src="/usr/share/javascript/slimbox/slimbox2.js"></script>
	<script type="text/javascript" src="/usr/share/javascript/slimbox/autoload.js"></script>
	<link rel="stylesheet" href="css/slimbox2.css" type="text/css" media="screen" />
	<style type="text/css">
		body {
			background-color: #fff;
			font-family: arial, helvetica, sans-serif;
			color: #000;
		}
		h1, p {
			text-align: center;
		}
		p {
			margin-top: 100px;
		}
		a {
			font-weight: bold;
			color: #f00;
		}
	</style>
</head>
<body>
	<h1>Slimbox 2 example page</h1>
	<p>
		<a href="example.jpg" rel="lightbox" title="Beautiful, isn't it?">Click here</a> to view a picture inside Slimbox.
	</p>
</body>
</html>