-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
36 lines (34 loc) · 1.08 KB
/
index.html
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
<!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">
<head profile="http://gmpg.org/xfn/11">
<link rel="stylesheet" type="text/css" href="css/slidenote.demo.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/jquery.slidenote.css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.slidenote.js"></script>
<title>slideNote Demo</title>
</head>
<body>
<div id="note" class="slidenote"></div>
<div id="leftNote" class="slidenote">
<h2>Important Notes...</h2>
<span>
<em>
Don't miss this stuff!
</em>
</span>
<p>
This is the stuff we want to appear as we scroll down the page.
</p>
</div>
<script type="text/javascript">
$('#leftNote').slideNote({
corner: 'left',
where: 1000
});
$('#note').slideNote({
url: 'ajax.html',
closeImage: 'images/slidenote.close.png'
});
</script>
</body>
</html>