blob: 32c79a5d2f96fe6d70e8fd3c35b09ee9e47f25e7 (
plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Selectable Demo</title>
<link rel="stylesheet" href="../themes/flora/flora.all.css" type="text/css" media="screen" title="Flora (Default)" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<style type="text/css">
.playground { position:static; }
.ui-selecting {
background-color: #eee;
}
.ui-selected {
background-color: #E6F7D4;
}
</style>
<script src="../jquery-1.2.3.min.js" type="text/javascript"></script>
<script type="text/javascript" src="../jquery.dimensions.js"></script>
<script type="text/javascript" src="../ui.mouse.js"></script>
<script type="text/javascript" src="../ui.selectable.js"></script>
<style type="text/css">
.hover { background: #000; }
</style>
</head>
<body class="flora">
<h2>1. Default, no options - select items in a list</h2>
<div class="playground" style="cursor: default;">
<ul id="example1">
<li>Item 1</li>
<li>Select Me</li>
<li>Item 3</li>
<li>And Me</li>
<li>Item 5</li>
</ul>
</div>
<h2>2. Default, no options (Floats)</h2>
<div class="playground">
<ul id="example2" style="list-style:none; height: 40px; cursor: default;">
<li style='float: left; padding: 5px; border: 1px solid #bbb; margin: 3px;'>Item 1</li>
<li style='float: left; padding: 5px; border: 1px solid #bbb; margin: 3px;'>Select Me</li>
<li style='float: left; padding: 5px; border: 1px solid #bbb; margin: 3px;'>Item 3</li>
<li style='float: left; padding: 5px; border: 1px solid #bbb; margin: 3px;'>And Me</li>
<li style='float: left; padding: 5px; border: 1px solid #bbb; margin: 3px;'>Item 5</li>
</ul>
</div>
<script type="text/javascript">
if(!window.console) {
window.console = {
log: function() {
alert(arguments[0]);
}
}
}
$(window).bind("load",function(){
$("#example1").selectable();
$("#example2").selectable();
});
</script>
</body>
</html>
|