forked from leandrowd/react-responsive-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 3.26 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./main.scss" />
<link rel="stylesheet" href="./carousel.scss" />
<link href="http://fonts.googleapis.com/css?family=Roboto:100,700,400" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Google Analytics -->
<script>
window.ga =
window.ga ||
function() {
(ga.q = ga.q || []).push(arguments);
};
ga.l = +new Date();
ga('create', 'UA-62004510-2', 'auto');
ga('send', 'pageview');
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
<!-- End Google Analytics -->
<a href="https://github.com/leandrowd/react-responsive-carousel"
><img
style="position: absolute; top: 0; right: 0; border: 0;"
src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67"
alt="Fork me on GitHub"
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"
/></a>
<div class="wrapper">
<h1>React Responsive Carousel</h1>
<a href="https://badge.fury.io/js/react-responsive-carousel"
><img src="https://badge.fury.io/js/react-responsive-carousel.svg" alt="npm version" height="18"
/></a>
<a href="https://travis-ci.org/leandrowd/react-responsive-carousel"
><img src="https://travis-ci.org/leandrowd/react-responsive-carousel.svg?branch=master"
/></a>
<h2>Storybook</h2>
<p>
Check it out these <a href="/storybook">cool demos</a> created using
<a href="https://storybook.js.org/">storybook</a>. The source code for each example is available
<a href="https://github.com/leandrowd/react-responsive-carousel/blob/master/stories/index.js">here</a>.
</p>
<h2>Summary</h2>
<ul class="summary">
<li><a href="#install">Installing</a></li>
<li><a href="#demos">Demo</a></li>
<li><a href="#contribute">Contributing</a></li>
</ul>
<h2 id="install">Installing</h2>
<code>
npm install react-responsive-carousel --save
</code>
<h2 id="demos">Demo</h2>
<section class="demos">
<article class="demo">
<h3 id="carousel">Carousel</h3>
<div class="example demo-carousel"></div>
<h5>Code:</h5>
<script src="https://gist.github.com/leandrowd/b8a9385b0b4b03054dc5.js"></script>
</article>
</section>
<h2 id="contributing">Contributing</h2>
<p>Please, feel free to contributing. You may file an issue or submit a pull request!</p>
</div>
<script src="./main.tsx"></script>
</body>
</html>