Spaces:
Sleeping
Sleeping
Update feedback.html
Browse files- feedback.html +11 -6
feedback.html
CHANGED
|
@@ -55,7 +55,7 @@
|
|
| 55 |
height: 100%;
|
| 56 |
border-radius: 5px;
|
| 57 |
}
|
| 58 |
-
.back-button {
|
| 59 |
margin-top: 20px;
|
| 60 |
padding: 10px 20px;
|
| 61 |
background-color: #007bff;
|
|
@@ -64,7 +64,7 @@
|
|
| 64 |
border-radius: 5px;
|
| 65 |
cursor: pointer;
|
| 66 |
}
|
| 67 |
-
.back-button:hover {
|
| 68 |
background-color: #0056b3;
|
| 69 |
}
|
| 70 |
</style>
|
|
@@ -77,8 +77,12 @@
|
|
| 77 |
return "素晴らしい";
|
| 78 |
}
|
| 79 |
|
| 80 |
-
function
|
| 81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
}
|
| 83 |
|
| 84 |
window.onload = function() {
|
|
@@ -103,7 +107,7 @@
|
|
| 103 |
<div class="card">
|
| 104 |
<div class="level" id="level">話者Lv: 85</div>
|
| 105 |
<div class="message" id="message">素晴らしい</div>
|
| 106 |
-
|
| 107 |
<div class="bar-container">
|
| 108 |
<span class="bar-label"></span>
|
| 109 |
<div class="bar"><div class="bar-fill" style="background-color: lightblue;"></div></div>
|
|
@@ -125,7 +129,8 @@
|
|
| 125 |
<div class="bar"><div class="bar-fill" style="background-color: lightcoral;"></div></div>
|
| 126 |
</div>
|
| 127 |
|
| 128 |
-
<button class="back-button" onclick="
|
|
|
|
| 129 |
</div>
|
| 130 |
</body>
|
| 131 |
</html>
|
|
|
|
| 55 |
height: 100%;
|
| 56 |
border-radius: 5px;
|
| 57 |
}
|
| 58 |
+
.back-button, .history-button {
|
| 59 |
margin-top: 20px;
|
| 60 |
padding: 10px 20px;
|
| 61 |
background-color: #007bff;
|
|
|
|
| 64 |
border-radius: 5px;
|
| 65 |
cursor: pointer;
|
| 66 |
}
|
| 67 |
+
.back-button:hover, .history-button:hover {
|
| 68 |
background-color: #0056b3;
|
| 69 |
}
|
| 70 |
</style>
|
|
|
|
| 77 |
return "素晴らしい";
|
| 78 |
}
|
| 79 |
|
| 80 |
+
function showRecorder() {
|
| 81 |
+
window.location.href = "index.html";
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
function showHistory() {
|
| 85 |
+
window.location.href = "talkDetail.html";
|
| 86 |
}
|
| 87 |
|
| 88 |
window.onload = function() {
|
|
|
|
| 107 |
<div class="card">
|
| 108 |
<div class="level" id="level">話者Lv: 85</div>
|
| 109 |
<div class="message" id="message">素晴らしい</div>
|
| 110 |
+
|
| 111 |
<div class="bar-container">
|
| 112 |
<span class="bar-label"></span>
|
| 113 |
<div class="bar"><div class="bar-fill" style="background-color: lightblue;"></div></div>
|
|
|
|
| 129 |
<div class="bar"><div class="bar-fill" style="background-color: lightcoral;"></div></div>
|
| 130 |
</div>
|
| 131 |
|
| 132 |
+
<button class="back-button" onclick="showRecorder()">録音画面を表示</button>
|
| 133 |
+
<button class="history-button" onclick="showHistory()">会話履歴を表示</button>
|
| 134 |
</div>
|
| 135 |
</body>
|
| 136 |
</html>
|