-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
95 lines (76 loc) · 2.92 KB
/
examples.html
File metadata and controls
95 lines (76 loc) · 2.92 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Insert this CSS link in your HTML file -->
<link href="ratekit/css/ratekit.min.css" type="text/css" rel="stylesheet">
<!-- Styles for this demo page only - you don't need these -->
<style>
body {
padding: 20px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.2
color: #333;
background-color: #fff;
}
h2 {
margin-top: 0;
}
.example {
margin-bottom: 40px;
padding: 20px;
background: #f5f5f5;
}
code {
color: cadetblue;
}
</style>
</head>
<body>
<h1>RateKit examples</h1>
<p>Check out <a href="https://ratekit.com">RateKit.com</a> for more instructions and examples</p>
<div class="example hidden-extra-small hidden-small">
<h3>Elephantine</h3>
<input id="joy" class="rating" data-size="xl">
<code class="prettyprint"><input id="joy" class="rating" data-size="xl"></code>
</div>
<div class="example hidden-extra-small hidden-small">
<h3>Ginormous</h3>
<input id="glee" class="rating" data-size="lg">
<code class="prettyprint"><input id="glee" class="rating" data-size="lg"></code>
</div>
<div class="example hidden-extra-small">
<h3>Well Built</h3>
<input id="ecstacy" class="rating" data-size="md">
<code class="prettyprint"><input id="ecstacy" class="rating" data-size="md"></code>
</div>
<div class="example hidden-extra-small">
<h3>Pocked-Sized</h3>
<input id="exultation" class="rating" data-size="sm">
<code class="prettyprint"><input id="exultation" class="rating" data-size="sm"></code>
</div>
<div class="example">
<h3>Teeny</h3>
<input id="enlightenment" class="rating" data-size="xs">
<code class="prettyprint"><input id="enlightenment" class="rating" data-size="xs"></code>
</div>
<div class="example">
<h3>Micro</h3>
<input id="beatitude" class="rating" data-size="xxs">
<code class="prettyprint"><input id="beatitude" class="rating" data-size="xs"></code>
</div>
<div class="example">
<h3>Nano</h3>
<input id="plenty" class="rating" data-size="xxxs">
<code class="prettyprint"><input id="plenty" class="rating" data-size="xxs"></code>
</div>
<p>Check out <a href="https://ratekit.com">RateKit.com</a> for more instructions and examples</p>
<!-- Insert this link for jQuery at the bottom of your HTML file, if you don't have jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Then insert this script tag -->
<script src="ratekit/js/ratekit.min.js" id="ratekit" data-load-extras="ajax"></script>
</body>
</html>