-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathexample-jquery-plugins.html
More file actions
34 lines (31 loc) · 1.14 KB
/
example-jquery-plugins.html
File metadata and controls
34 lines (31 loc) · 1.14 KB
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
<!doctype html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>Require Js</title>
<link rel="stylesheet" href="Assets/Styles/Slimbox.css" type="text/css" media="screen" />
</head>
<body>
<h1>RequireJs and jQuery Plugins</h1>
<h2>jQuery Carousel Lite</h2>
<div id="carousel">
<ul>
<li><img src="Assets/Images/1.jpg"></li>
<li><img src="Assets/Images/2.jpg"></li>
<li><img src="Assets/Images/3.jpg"></li>
<li><img src="Assets/Images/4.jpg"></li>
<li><img src="Assets/Images/5.jpg"></li>
<li><img src="Assets/Images/6.jpg"></li>
<li><img src="Assets/Images/7.jpg"></li>
<li><img src="Assets/Images/8.jpg"></li>
</ul>
</div>
<h2>jQuery Slimbox</h2>
<p><a href="Assets/Images/example.jpg" rel="lightbox" title="Beautiful, isn't it?">Click here</a> to view a picture inside Slimbox.</p>
<!--
data-main: defines the main script folder where all other scripts are loaded relative to.
we have specified 'example-jquery-plugins' to be the script to be loaded initially when DOM is ready.
-->
<script data-main="Assets/Scripts/example-jquery-plugins" src="Assets/Scripts/Require.min.js"></script>
</body>
</html>