-
Notifications
You must be signed in to change notification settings - Fork 0
/
message_proto-4.html
88 lines (73 loc) · 3.13 KB
/
message_proto-4.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Prototype 1</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Include the compiled Ratchet CSS -->
<link href="ratchet/css/ratchet.min.css" rel="stylesheet">
<link href="ratchet/css/ratchet-theme-ios.min.css" rel="stylesheet">
<!-- Include custom styles -->
<link href="css/main.css" rel="stylesheet">
<!-- Include the compiled Ratchet JS -->
<!-- <script src="ratchet/js/ratchet.min.js"></script> -->
<script src="js/jquery-1.9.1.min.js"></script>
</head>
<body>
<header class="bar bar-nav proto-3">
<a href="index.html" data-transition="slide">
<button class="btn btn-link btn-nav pull-left">
<span class="icon icon-left-nav"></span>
Beskeder
</button>
</a>
<div class="context-menu">
<div class="wheel">
</div>
<p>Cykler</p>
</div>
<h1 class="title">Martin Emil</h1>
</header>
<div class="bar bar-standard bar-footer send-messages">
<img class="icon-cam" src="img/ios-camera-icon.png" alt="camera" />
<input class="write-message-input" type="text" placeholder="Tekstbesked">
<a class="button_send disabled" onclick="sendMessage();">Send</a>
</div>
<div class="content">
<ul class="messages">
<!-- Tidligere samtale -->
<li class="time"><strong>i går</strong> 18.16</li>
<li class="receive-bubble">Hej Jacob,<br>Helt sikkert! :-)<br>Det ser ud til at regne en del kl. 10 imorgen. (Vi skal være udenfor i ca. 20 min). Vejret ser bedre ud torsdag kl. 10. Kunne det være en mulighed hvis alt for meget regn skal undgås?<br>Vh. Martin</li>
<li class="send-bubble">Så skal det være torsdag kl 11. Passer det jer?</li>
<li class="receive-bubble">Torsdag kl 11 er godt.</li>
<li class="receive-bubble">Lad os sige det :)</li>
<li class="send-bubble">Super</li>
<!-- Den nye besked i brugertest -->
<li class="time"><strong>i dag</strong> 11.10</li>
<li class="receive-bubble">Hej Jacob! Jeg er her nu. Står ude foran. Hvad med dig? :)</li>
</ul>
</div>
<div class="overlay">
</div>
<div class="overlay-content">
<a href="index.html" class="hidden-back-button"></a>
<div class="title-overlay">Martin Emil</div>
<div class="receive-bubble">
Hej Jacob! Jeg er her nu. Står ude foran. Hvad med dig? :)
</div>
<div class="context-alerts">
<div class="context-alert-image">
</div>
<div class="context-alert-text">
Ikke muligt at svare,<br>mens du cykler
</div>
</div>
</div>
<script src="js/jquery-styles.js"></script>
<script src="js/main.js"></script>
</body>
</html>