-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (24 loc) · 758 Bytes
/
index.html
File metadata and controls
34 lines (24 loc) · 758 Bytes
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>
<head>
<meta charset="UTF-8">
<title>BackBone.js Carousel Demo</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/backbone.js"></script>
<script type="text/javascript" src="js/carousel.js"></script>
</head>
<body>
<div data-carousel="carousel1">
<div data-carousel-slides-wrapper>
</div>
</div>
<script type="text/javascript">
var carousel = new Carousel();
carousel.addSlide({
content : '<img alt="" src="img/veloster.jpg"/>'
});
console.log( carousel );
</script>
</body>
</html>