-
Notifications
You must be signed in to change notification settings - Fork 0
/
resizeable_panels.html
140 lines (93 loc) · 4.99 KB
/
resizeable_panels.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<link href="css/plugins/jQueryUI/jquery-ui.css" rel="stylesheet">
<div class="wrapper wrapper-content animated fadeInRight">
<div class="resizable-panels">
<div class="ibox">
<div class="ibox-title">
<h5>
Resizable
</h5>
<div class="ibox-tools">
<label class="label label-primary">Resize me!</label>
</div>
</div>
<div class="ibox-content">
<h2>
This is simple box container nr. 1
</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
</p>
</div>
</div>
<div class="ibox">
<div class="ibox-title">
<h5>
Resizable
</h5>
</div>
<div class="ibox-content">
<h2>
This is simple box container nr. 2
</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
</p>
</div>
</div>
<div class="ibox">
<div class="ibox-title">
<h5>
Resizable
</h5>
</div>
<div class="ibox-content">
<h2>
This is simple box container nr. 3
</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
</p>
</div>
</div>
<div class="ibox">
<div class="ibox-title">
<h5>
Resizable
</h5>
</div>
<div class="ibox-content">
<h2>
This is simple box container nr. 4
</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
</p>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- Mainly scripts -->
<!-- Peity -->
<!-- Custom and plugin javascript -->
<script src="js/common.js"></script>
<!-- jquery UI -->
<script src="js/plugins/jquery-ui/jquery-ui.min.js"></script>
<!-- Touch Punch - Touch Event Support for jQuery UI -->
<script src="js/plugins/touchpunch/jquery.ui.touch-punch.min.js"></script>
<script>
$(document).ready(function () {
$(".ibox").resizable({
helper: "ui-resizable-helper",
grid: 20
});
});
</script>