-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (94 loc) · 3.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Interactive Learning: Russian Language</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="fullpage.js/jquery.fullPage.css">
<script src="fullpage.js/jquery.fullPage.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic">
</head>
<body>
<div id="fullpage">
<div class="fp-section" id="slide1">
<h1 class="middle">Interactive learning of the Russian language</h1>
<p class="middle">Confident speaking in foreign language</p>
<ul class="icons">
<li class="icon">
<img src="images/icon-camera.png">
<p>Interactive video for</br> learning Russian</p>
</li>
<li class="icon">
<img src="images/icon-microphone.png">
<p>Interacting with a virtual character by microphone</p>
</li>
<li class="icon">
<img src="images/icon-check.png">
<p>Our system detects invalid or poor pronunciation</p>
</li>
<li class="icon">
<img src="images/icon-bubbles.png">
<p>Native speakers will understand you</p>
</li>
<li class="icon">
<img src="images/icon-smile.png">
<p>The process is fast and convenient</p>
</li>
</ul>
</div>
<div class="fp-section" id="slide3">
<div id="lesson">
<video id="video" poster="images/anna.jpg">
<source src="video/0.mp4" type="video/mp4">
</video>
<img src="images/command-play.png" id="start-video">
<div id="messages">
<!-- display warnings like no microphone etc -->
<p id="warning" style="display: none;"></p>
<p id="hint" style="display: none;"></p>
<p id="answers" style="display: none;"></p>
</div>
</div>
<div id="final">
<h1 id="final-text"><img src="images/icon-check.png" id="final-img"> Lesson completed</h1>
</div>
</div>
<div class="fp-section" id="slide4">
<div class="block">
– Like our format?</br>
– Like us on Facebook!
<div class="addthis_sharing_toolbox" style="margin-top: 10px;"></div>
</div>
<div class="block-two">
– Do you want to see a service with interactive learning?</br>
– Re-tweet!
<br>
<div style="margin-top: 10px;">
<a href="https://twitter.com/intent/tweet?button_hashtag=russianlessons" class="twitter-hashtag-button" data-size="large" data-related="Vitalliumm">Tweet #russianlessons</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
<div class="footer">
The crew "Russian Lessons". <a href="http://47hours.org/">Hackaton 2015</a></br>
<a href="https://github.com/denismosolov/47hours_5">Project on Github</a>
</div>
</div>
</div>
<div id="fp-nav" class="right" style="margin-top: -43.5px;">
<ul>
</ul>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#fullpage').fullpage({
navigation: true,
verticalCentered: true
});
});
</script>
<script src="js/main.js" defer></script>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-553ce4e06e3ae45a" async="async"></script>
</body>
</html>