-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.js
More file actions
64 lines (46 loc) · 1.62 KB
/
Copy pathfunctions.js
File metadata and controls
64 lines (46 loc) · 1.62 KB
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
let answered = false;
function sendAnswer(id) {
if (answered) return;
answered = true;
$('#timeout-bar').animate({
opacity: .5,
height: "0"
}, 100);
$.post( "checkAnswer.php", { id: id })
.done(function( data ) {
var obj = JSON.parse(data);
if (obj.success) {
$('#answer-feedback').html('<p class="correct">Správně!</p>');
} else {
$('#answer-feedback').html('<p class="incorrect">Špatně.</p>');
}
var previousCss = $("#answer-feedback").attr("style");
$("#answer-feedback").css({
maxHeight: '100%'
});
var optionHeight = $("#answer-feedback").height();
$("#answer-feedback").attr("style", previousCss ? previousCss : "");
console.log(optionHeight);
$("#answer-feedback").animate({
"max-height": optionHeight
}, 200, function() {
setTimeout(()=>{
$("#answer-feedback").animate({
"max-height": "1.2vh"
}, 100, function() {
$("#inner-content").animate({
"opacity": 0
}, 150, function() {
location.reload();
});
});
}, 300);
});
});
}
function skipAnswer() {
$.post( "skipAnswer.php", {})
.done(function( data ) {
if (!answered) location.reload();
});
}