-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
153 lines (138 loc) · 4.03 KB
/
main.js
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
$(document).ready(function () {
// process bar
setTimeout(function () {
firstQuestion();
$('.spinner').fadeOut();
$('#preloader').delay(350).fadeOut('slow');
$('body').delay(350).css({
overflow: 'visible',
});
}, 600);
});
function init() {
document.getElementById('titleWeb').innerHTML = CONFIG.titleWeb;
$('#title').text(CONFIG.title);
$('#desc').text(CONFIG.desc);
$('#yes').text(CONFIG.btnYes);
$('#no').text(CONFIG.btnNo);
var xYes = (0.9 * $(window).width() - $('#yes').width() - $('#no').width()) / 2;
var xNo = xYes + $('#yes').width() + 0.1 * $(window).width();
var y = 0.75 * $(window).height();
$('#yes').css('left', xYes);
$('#yes').css('top', y);
$('#no').css('left', xNo);
$('#no').css('top', y);
}
function firstQuestion() {
$('.content').hide();
Swal.fire({
title: CONFIG.introTitle,
text: CONFIG.introDesc,
imageUrl: 'img/logi.gif',
imageWidth: 300,
imageHeight: 300,
background: '#fff url("img/iput-bg.jpg")',
imageAlt: 'Custom image',
confirmButtonText: CONFIG.btnIntro,
}).then(function () {
$('.content').show(200);
});
// Play the audio
}
// switch button position
function switchButton() {
var audio = new Audio('sound/duck.mp3');
audio.play();
var leftNo = $('#no').css('left');
var topNO = $('#no').css('top');
var leftY = $('#yes').css('left');
var topY = $('#yes').css('top');
$('#no').css('left', leftY);
$('#no').css('top', topY);
$('#yes').css('left', leftNo);
$('#yes').css('top', topNO);
}
// move random button position
function moveButton() {
var x = Math.random() * ($(window).width() - $('#no').width()) * 0.9;
var y = Math.random() * ($(window).height() - $('#no').height()) * 0.9;
var left = x + 'px';
var top = y + 'px';
$('#no').css('left', left);
$('#no').css('top', top);
}
init();
var n = 0;
$('#no').mousemove(function () {
if (Math.random() < 0.5 || n == 1) switchButton();
else moveButton();
n++;
});
$('#no').click(() => {
if (screen.width >= 900) switchButton();
});
// generate text in input
function textGenerate() {
var n = '';
var text = ' ' + CONFIG.reply;
var a = Array.from(text);
var textVal = $('#txtReason').val() ? $('#txtReason').val() : '';
var count = textVal.length;
if (count > 0) {
for (let i = 1; i <= count; i++) {
n = n + a[i];
if (i == text.length + 1) {
$('#txtReason').val('');
n = '';
break;
}
}
}
$('#txtReason').val(n);
setTimeout('textGenerate()', 1);
}
// Function to check input and trigger custom alert if conditions are met
function checkInputAndShowPopup(input) {
const name = input.toLowerCase();
let message = `You're the one that I like! ${name}`;
$('#customAlert').text(message).fadeIn();
setTimeout(() => {
$('#customAlert').fadeOut();
}, 3000);
}
// show popup
$('#yes').click(function () {
const userInput = prompt('Enter your name:'); // Replace with actual input method
checkInputAndShowPopup(userInput);
Swal.fire({
title: CONFIG.question,
html: true,
width: 900,
padding: '3em',
html: "<input type='text' class='form-control' id='txtReason' onmousemove=textGenerate() placeholder='Whyyy thou????'>",
background: '#fff url("img/iput-bg.jpg")',
backdrop: `
rgba(0,0,123,0.4)
url("img/giphy2.gif")
left top
no-repeat
`,
confirmButtonColor: '#3085d6',
confirmButtonColor: '#fe8a71',
confirmButtonText: CONFIG.btnReply,
}).then((result) => {
if (result.value) {
Swal.fire({
width: 900,
confirmButtonText: CONFIG.btnAccept,
background: '#fff url("img/iput-bg.jpg")',
title: CONFIG.mess,
text: CONFIG.messDesc,
confirmButtonColor: '#83d0c9',
onClose: () => {
window.location = CONFIG.messLink;
},
});
}
});
});