| author | Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> |
| Sat, 07 Jan 2012 16:15:16 +0100 | |
| changeset 468 | e7f9898e6f99 |
| parent 133 | 9578d3ddce17 |
| permissions | -rwxr-xr-x |
|
133
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
3 |
<head> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
4 |
<title>Example jqDock</title> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
5 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
6 |
|
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
7 |
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
8 |
<script type='text/javascript' src='http://www.wizzud.com/jqDock/jquery.jqDock.min.js'></script> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
9 |
|
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
10 |
<style type='text/css'> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
11 |
/*position and hide the menu initially - leave room for menu items to expand...*/ |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
12 |
#page {padding-top:150px; padding-bottom:20px; width:100%;} |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
13 |
#menu {position:absolute; top:100px; left:0; display:none;} |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
14 |
</style> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
15 |
<script type='text/javascript'> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
16 |
jQuery(document).ready(function($){ |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
17 |
// Apply jqDock with no options... |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
18 |
$('#menu').jqDock(); |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
19 |
}); |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
20 |
</script> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
21 |
</head> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
22 |
<body> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
23 |
<div id='page'> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
24 |
<div id='menu'> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
25 |
<img src='http://www.wizzud.com/jqDock/images/m/Addressbook.png' title='Favourites' alt='' /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
26 |
<img src='http://www.wizzud.com/jqDock/images/m/DVD-Player.png' title='Pictures' alt='' /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
27 |
<img src='http://www.wizzud.com/jqDock/images/m/Safari.png' title='Music' alt='' /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
28 |
<img src='http://www.wizzud.com/jqDock/images/m/Terminal.png' title='Videos' alt='' /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
29 |
<img src='http://www.wizzud.com/jqDock/images/m/Instant_Messaging.png' title='Uploads' alt='' /> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
30 |
</div> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
31 |
</div> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
32 |
</body> |
|
9578d3ddce17
correct line endings + other small errors
Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
parents:
99
diff
changeset
|
33 |
</html> |