-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 1.06 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mateCarousel</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>mateCarousel</h1>
<span class="slogan">we handle the ugly and let the beautiful part to you!</span>
<div id="container">
<div class="inner red"></div>
<div class="inner black"></div>
<div class="inner yellow"></div>
<div class="inner blue"></div>
</div>
<button onclick="carousel.removeMenu()">carousel.removeMenu()</button>
<button onclick="carousel.lateCreateMenu('dot','menuContainer')">carousel.lateCreateMenu("dot","menuContainer")</button>
<button onclick="carousel.pause()">carousel.pause()</button>
<button onclick="carousel.play(1000)">carousel.play(1000)</button>
<span>Read the documentation and get to know all the features of mateCarousel: <a href="http://github.com/matepaiva/mateCarousel">http://github.com/matepaiva/mateCarousel</a></span>
<script src="mateCarousel.js"></script>
<script src="index.js"></script>
</body>
</html>