-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (95 loc) · 4.17 KB
/
index.html
File metadata and controls
103 lines (95 loc) · 4.17 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
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<meta content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" name="viewport">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<title>Study</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73714766-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="title" class="teal lighten-1">
<h4 class="white-text center-align">Efficient study</h4>
</div>
<main>
<div class="container">
<div class="card-panel">
<div class="row">
<div class="input-field col s12 m8 offset-m2 l6 offset-l3 tooltipped" data-position="bottom" data-delay="100" data-tooltip="After how many minutes do you start feeling distracted or feel like it's not working anymore?">
<i class="material-icons prefix">assignment</i>
<p class="range-field">
<input id="studyTime" type="range" min="20" max="180" value="30"/>
</p>
<label>Study interval duration in minutes : <span id="studyTimeText">30</span></label>
</div>
</div>
<div class="row">
<div class="input-field col s12 m8 offset-m2 l6 offset-l3 tooltipped" data-position="bottom" data-delay="100" data-tooltip="How long does the break need to be in order to feel refreshed? Don't cheat!">
<i class="material-icons prefix">pause_circle_outline</i>
<p class="range-field">
<input id="pauseTime" type="range" min="5" max="30" value="5" />
</p>
<label>Break interval duration in minutes : <span id="pauseTimeText">5</span></label>
</div>
</div>
<div class="row">
<div class="col s12 l6 offset-l3 center-align">
<a id="setTimer" href="#!" class="btn-large waves-effect waves-light center">Start timer</a>
<a id="clearTimer" href="#!" class="btn-large waves-effect waves-light center">Reset</a>
</div>
</div>
<div class="divider"></div>
<div class="row">
<div class="center-align">
<h3 id="status">Study time</h3>
</div>
<div class="col m12 l6 offset-l3 center-align">
<div class="col s3"><h3 class="timerH3" id="hours">0h</h3></div>
<div class="col s1"><h3 class="timerH3">:</h3></div>
<div class="col s4"><h3 class="timerH3" id="minutes">30m</h3></div>
<div class="col s1"><h3 class="timerH3">:</h3></div>
<div class="col s3"><h3 class="timerH3" id="seconds">0s</h3></div>
</div>
<!--nice loading bar here-->
<div class="progress col l6 offset-l3 m12 s12">
<div id="progressBar" class="determinate"></div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer teal">
<div class="container">
<div class="row">
<div class="col s12">
<p class="grey-text text-lighten-2 center">This site was created to help anyone studying or working, more info about why this technique is efficient in this great
<a href="https://www.youtube.com/watch?v=IlU-zDU6aQ0" target="_blank">
<span class="chip teal lighten-3 text-black">video</span>
</a>
or on <a href="https://en.wikipedia.org/wiki/Pomodoro_Technique" target="_blank"><span class="chip teal lighten-3 text-black">wiki</span></a>
if you are in a hurry.
</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container row">
<div class="col s12 m3">© 2016 Alexandru Simandi</div>
<div class="col s12 m9 right-align">Questions or feedback at simandialexander@gmail.com</div>
</div>
</div>
</footer>
</body>
</html>