-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (73 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<title>Moodlog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<link href='http://fonts.googleapis.com/css?family=Pacifico'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/moodlog.css" type="text/css"
medium="screen" />
<link rel="icon" href="img/favicon.ico" />
</head>
<body>
<div class="heading">
<div class="title">
<img class="logo" src="img/moodlog_.png" />
<div class="tagline">
how do you <span>feel</span> now?<br/>
create a graphic memory of <span>yourself</span>!
</div>
</div>
<ul class="menu">
<li id="menu-input" ><a href="#" onclick="show_input()"><img src="img/log.png" title="log how you feel now"></a></li>
<li id="menu-view"><a href="#" onclick="show_vis()"><img src="img/view.png" title="view your graphical
memory" /></a></li>
<li><a href="#" onclick="logout()"><img src="img/logout.svg" title="logout"
alt="logout" width="30px"/></a></li>
</ul>
</div>
<div class="content">
<div id="start">
<div class="carousel">How <span>happy sad</span> do you feel now?</div>
<div class="carousel">Did you ever want to look back and know how
were feeling?</div>
<div class="carousel">Moodlog helps you log your mood and visualize
your emotions.</div>
<a href="#" id="login"><img src="img/login_moodlog.png"/></a>
</div>
<div id="input">
<div class="group">
<div>I am feeling ...</div>
<div class="group2">
<div>
happy
</div>
<div id="input-graph">
</div>
<div>
sad
</div>
</div>
<div id="form">
<textarea id="note" name="note" maxlength="250" placeholder="what makes you
feel that way"?></textarea>
</div>
<div id="submitbutton"><a href="#" onclick="sbmt()"><img src="img/submit.png"
title="submit"/></a></div>
</div>
</div>
<div id="vis">
<div id="vis-graph">
</div>
</div>
</div>
<script src="vendor/js/underscore-min.js"></script>
<script src="vendor/js/d3.v3.min.js"></script>
<script src="js/input.js"></script>
<script src="js/visualisation.js"></script>
<script src="js/control.js"></script>
<script src="https://apis.google.com/js/client.js?onload=init">
</script>
</body>
</html>