-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathhowtouse.html~
96 lines (80 loc) · 3.3 KB
/
howtouse.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>TimePicki - how to use </title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">TimePicki v2.0</h3>
<nav>
<ul class="nav masthead-nav">
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li class="active"><a href="howtouse.html">How to use</a></li>
<li><a href="options.html">Options</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="inner cover height500">
<h1 class="cover-heading">How to use</h1>
<div class="text-left">
<h3>HTML:</h3>
<p>create input text field in body section.</p>
<pre><input id='timepicker' type='text'name='timepicker'/></pre>
</div>
<div class="text-left">
<h3>CSS:</h3>
<p>put timepicki.css file in your webpage for timepicker style.</p>
<pre><link rel='stylesheet' type='text/css'href='css/timepicki.css'/></pre>
</div>
<div class="text-left">
<h3>JS:</h3>
<p>put jquery library file and timepicki.js file with in script.</p>
<pre><script type='text/javascript'src='js/jquery.js'></script></pre>
<pre><script type='text/javascript'src='js/timepicki.js'></script></pre>
<p>call timepicki() method with input element selector</p>
<pre><script type='text/javascript'src='js/jquery.js'>
$('#timepicker').timepicki();
</script></pre>
<p>Now timepicker is ready your page, open your page and checkout timpicker.</p>
</div>
<div class="text-left">
<h3>Image:</h3>
<p>copy and paste arrow images to your project's images directroy from timpicki images directory.</p>
</div>
<p class="lead text-right">
<a href="options.html" class="btn btn-sm btn-success">Set options</a>
<a href="https://github.com/senthilraj/TimePicki" class="btn btn-sm btn-success">Download</a>
</p>
</div>
<div class="mastfoot">
<div class="inner">
<p>Copyrights <a href="https://github.com/senthilraj/TimePicki">@Timepicki</a>, by <a href="https://twitter.com/senthil2rajan">@senthil2rajan</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>