-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalk.js
More file actions
87 lines (75 loc) · 1.82 KB
/
talk.js
File metadata and controls
87 lines (75 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
$(function() {
$('#yes').click(function(event) {
modal('รักเทอร์ภาษาจีน', function() {
$('.page_one').addClass('hide');
$('.page_two').removeClass('hide');
// typeWrite();
fireworks();
});
});
$('#no').click(function(event) {
modal('โคตรจะเสียใจอะ', A);
});
});
function A() {
modal('ไปคิดใหม่อีกรอบนะ', B);
}
function B() {
modal('อืม แล้วแต่จะคิด ชีวิตคนละแบบ', C);
}
function C() {
modal('ช่างมัน', D);
}
function D() {
modal('อึมเค', E);
}
function E() {
modal('คือเสียใจ', F);
}
function F() {
modal('ที่พูดมาเข้าใจบ้างมะ', G);
}
function G() {
modal('หิวข้าว', H);
}
function H() {
modal('ลองคิดดูนะ', I);
}
function I() {
modal('ห้ะ', J)
}
function I() {
modal('ห้ะ', J)
}
function I() {
modal('ห้ะ', J)
}
function I() {
modal('ห้ะ', J)
}
function I() {
modal('ห้ะ', J)
}
function J() {
modal('หว่ออ้านหนี่เด้อ', function() {
fireworks();
});
}
function fireworks() {
$('.page_one').addClass('hide');
initAnimate();
}
function modal(content, callback) {
var tpl = '<div class="container">'+
'<div class="mask"></div>'+
'<div class="modal">'+
'<p>'+ content +'</p>'+
'<button type="button" id="confirm" class="confirm">จ่ะ</button>'+
'</div>'+
'</div>';
$('body').append(tpl);
$(document).on('click', '.confirm', function() {
$('.container').remove();
callback();
});
}