-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
111 lines (41 loc) · 1.54 KB
/
script.js
File metadata and controls
111 lines (41 loc) · 1.54 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
$(document).on('mouseover', '.container .column', function () {
$(this).addClass('active').siblings().removeClass('active')
});
var modals = [];
modals.push({
title: 'Welcome to Lumi FansPage!',
text: 'This website requires desktop web resolution to experience its features',
icon: "success",
});
// modals.push({
// title: 'Checking your screen resolutions',
// text: 'Please wait',
// timer: 1300,
// onOpen: function () {
// swal.showLoading()
// }
// });
swal.queue(modals);
// alert('This website requires desktop web resolution to experience its features')
// alert('Checking the size of the screen resolution you are using . . . . . . . . . . . .')
// if ($(window).width() < 1080) {
// alert('Sorry, but your screen resolution cant feel all the features, please use the Desktop Version!' +
// ' Your resolution is ' +
// window.screen.width * window.devicePixelRatio + "x" + window.screen.height * window.devicePixelRatio);
// } else {
// alert('Congratulations, you can experience all of its features now! ' + ' Your resolution is ' + window.screen
// .width *
// window.devicePixelRatio + "x" +
// window.screen.height *
// window.devicePixelRatio);
// }
// if ($(window).width() > 1080) {
// }
// video card js
button = document.querySelector('.button-games');
button.addEventListener('mouseup', function () {
this.classList.add('active');
setTimeout(function () {
button.classList.remove('active');
}, 300);
});