-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrates.html
92 lines (90 loc) · 2.86 KB
/
rates.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
<html>
<head>
<title>Web Speech Rate Chart</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
<link rel="stylesheet" href="rates_chart.css">
<script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<style>
#results {
margin-top: 20px;
}
header {
padding: 2rem 0px;
background-image: linear-gradient(to bottom, rgb(61, 93, 124) 0px, rgb(84, 109, 153) 100%);
color: #fff;
}
header > .container {
display: flex;
justify-content: start;
margin-top: 15px;
}
h1 {
margin: 0px;
max-width: 25rem;
}
select#voices {
width: 30rem;
max-width: 50%;
margin: 0 10px;
}
#col {
display: flex;
justify-content: space-between;
flex-direction: column;
}
.container {
max-width: 800px;
}
#permalink:not([href]) {
display: none;
}
table {
border-collapse: separate;
}
@media all and (max-width: 599px) {
header > .container {
flex-direction: column;
}
h1, select#voices, button, input {
max-width: inherit;
width: 100%;
margin: 10px 0;
}
table {
font-size: 8px;
}
}
</style>
<style>
</style>
</head>
<body>
<header>
<div class="container">
<h1>Speech Rate Benchmark</h1>
<select class="form-control" id="voices" multiple></select>
<div id="col">
<input type="text" class="form-control" id="texttospeak" value="Fried cheese with club sauce. Popcorn shrimp with club sauce. Chicken fingers with spicy club sauce.">
<button type="button" class="btn btn-success" id="startstop" disabled>
Start
</button>
</div>
</div>
</header>
<div id="results" class="container">
<div class="table-responsive">
<table class="table table-condensed">
<tbody>
</tbody>
</table>
</div>
<div class="ct-chart ct-minor-seventh"></div>
<a id="permalink">Permalink</a>
</div>
<script type="text/javascript" src="rates.js"></script>
</body>
</html>