-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormal.js
313 lines (313 loc) · 11.3 KB
/
normal.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// ==UserScript==
// @name 404 Game
// @namespace http://oj.bashu.com.cn/
// @version 1.0
// @description game
// @author 123asdf123
// @match *://*/*
// @icon https://cdn.luogu.com.cn/upload/usericon/576074.png
// @license GPL3.0+SATA
// @grant none
// ==/UserScript==
(function() {
'use strict';
while(document.body.children.length){
document.body.children[0].remove();
}
window.document.body.appendChild(document.createElement("div"))
var hp=404,t=1,tt=500,sc=0,scc=0;
var canvas = document.createElement("canvas")
var ctx = canvas.getContext("2d")
window.document.body.appendChild(canvas)
canvas.width = window.innerWidth
canvas.height = window.innerHeight
canvas.setAttribute('style', 'position:fixed;left:0;top:0;pointer-events:none;filter:blur(2px);')
var clicks = []
var points = [] //定义粒子数组
var srolls = [] //定义粒子数组
var live = 50 //存活50个周期
var colors = [ //备选粒子颜色数组
"236, 204, 104",
"255, 71, 87",
"112, 161, 255",
"123, 237, 159"
]
var mx=innerWidth/2,my=innerHeight/2,mox=0,moy=0;
var rx=innerWidth/2,ry=innerHeight/2
window.addEventListener("mousemove", function (evt) { //监听点击事件
mox=evt.x;
moy=evt.y;
})
var cnt=0;
function drawpoints() { //绘制粒子
document.body.children[0].innerHTML="<center><h1>"+hp+" Not Found</h1></center><hr><center>score/"+sc+"."+scc+" (Games)</center>";
if(hp<=0){
return
}
mx+=(mox-mx)/20; //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
my+=(moy-my)/20;
for (let i = 0; i < points.length; i++){
let point=points[i]
if(point.life2<3&&Math.pow((mx-(point.sx+point.size/2)),2)+Math.pow((my-(point.sy+point.size/2)),2)<=Math.pow(point.size+5,2)){
hp--;
// points.splice(i, 1);
}
}
for (let i = 0; i < srolls.length; i++){
let point=srolls[i]
if(point.life2<3&&Math.pow((mx-(point.sx+point.size/2)),2)+Math.pow((my-(point.sy+point.size/2)),2)<=Math.pow(point.size+5,2)){
hp--;
// points.splice(i, 1);
}
}
ctx.clearRect(0, 0, canvas.width, canvas.height) //清屏
ctx.beginPath()
ctx.arc(mx, my, 5, Math.PI * 2, false) //根据粒子属性画圆
ctx.fillStyle = "rgba(0,0,0,1)" //根据粒子属性设置填充颜色及透明度
ctx.fill() //填充颜色
ctx.beginPath()
ctx.arc(rx, ry, 5, Math.PI * 2, false) //根据粒子属性画圆
ctx.fillStyle = "rgba(255,0,0,1)" //根据粒子属性设置填充颜色及透明度
ctx.fill() //填充颜色
for (let i = 0; i < points.length; i++){
let point=points[i]
if(point.sx<=0){
point.vx=-point.vx;
}
if(point.sx>=innerWidth){
point.vx=-point.vx;
}
if(point.sy<=0){
point.vy=-point.vy;
}
if(point.sy>=innerHeight){
point.vy=-point.vy;
}
}
for (let i = 0; i < srolls.length; i++){
let point=srolls[i]
if(point.sx<=0){
point.vx=-point.vx;
}
if(point.sx>=innerWidth){
point.vx=-point.vx;
}
if(point.sy<=0){
point.vy=-point.vy;
}
if(point.sy>=innerHeight){
point.vy=-point.vy;
}
}
for (let i = 0; i < clicks.length; i++){
let point=clicks[i]
if(point.sx<=0){
point.vx=-point.vx;
}
if(point.sx>=innerWidth){
point.vx=-point.vx;
}
if(point.sy<=0){
point.vy=-point.vy;
}
if(point.sy>=innerHeight){
point.vy=-point.vy;
}
}
for (let i = 0; i < points.length; i++) { //遍历粒子
let point = points[i] //定义单个粒子
ctx.beginPath()
ctx.arc(point.sx, point.sy, point.size, Math.PI * 2, false) //根据粒子属性画圆
ctx.fillStyle = "rgba(" + point.color + "," + 255 + ")" //根据粒子属性设置填充颜色及透明度
ctx.fill() //填充颜色
point.life-- //生命值减1
if (point.life <= 0) { //生命值为0则从粒子数组中删除
if(point.life2){
for (let i = 0; i < 5; i++) { //添加15个粒子
points.push({
sx: point.sx, //鼠标当前坐标作为粒子坐标
sy: point.sy,
vx:(point.life2)*(0.5 - Math.random()), //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: (point.life2)*(0.5 - Math.random()),
life: live, //存活周期
life2:point.life2-1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size:point.life2*2+2, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
}
}
points.splice(i, 1)
}
point.sx += point.vx * 3 //根据向量值改变粒子位置
point.sy += point.vy * 3
point.rt++;
}
for (let i = 0; i < srolls.length; i++) { //绘制点击效果
if(i>1000){
srolls.splice(i, 1);
continue;
}
let sroll = srolls[i]
ctx.beginPath()
ctx.arc(sroll.sx, sroll.sy, sroll.size, Math.PI * 2, false) //根据粒子属性画圆
ctx.fillStyle = "rgba(" + sroll.color + "," + (sroll.life+50) / live + ")" //根据粒子属性设置填充颜色及透明度
ctx.fill() //填充颜色
sroll.sx += sroll.vx * 10
sroll.sy += sroll.vy * 10
sroll.life--
if (sroll.life <= 0) {
if(sroll.life2==2){
srolls.push({
sx: sroll.sx,
sy: sroll.sy,
vx:-sroll.vx*5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy:-sroll.vy*5,
// vx: (mx-sroll.sx)/200, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
// vy: (my-sroll.sy)/200,
life: live*2/5,
life2:1,
color:sroll.color,
size:5,
rt:0
})
}
if(sroll.life2==1){
if(Math.random()>0.5){
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: 5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 0,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: -5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 0,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx:0, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: 0, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy:-5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
}
else{
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: 5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: -5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx:5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: -5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
points.push({
sx: sroll.sx, //鼠标当前坐标作为粒子坐标
sy: sroll.sy,
vx: -5, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy:-5,
life: live, //存活周期
life2:1,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size: 7, //随机粒子尺寸,取值范围为0~5
rt:0 //随机粒子尺寸,取值范围为0~5
})
}
}
srolls.splice(i, 1)
}
}
cnt++;
if(cnt%50<t){
srolls.push({
sx: rx,
sy: ry,
vx: (mx-rx)/200, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: (my-ry)/200,
life: live*2/5,
life2:1,
color:colors[parseInt(Math.random() * colors.length)],
size:10
})
}
if(cnt%50==0){
scc++;
}
if(cnt==tt){
t++;
tt-=50;
if(tt==0){
tt=100;
}
cnt=0;
sc++;
for (var i = 0; i < 15; i++) { //添加15个粒子
points.push({
sx: mx, //鼠标当前坐标作为粒子坐标
sy:my,
vx: 1.5 - Math.random()*3, //x轴及y轴的移动向量,取值范围为-0.5 ~ 0.5
vy: 1.5 - Math.random()*3,
life: live, //存活周期
life2:3,
color: colors[parseInt(Math.random() * colors.length)], //随机选择颜色
size:8, //随机粒子尺寸,取值范围为0~5
rt:0
})
}
}
}
setInterval(drawpoints, 20) //20毫秒绘制一次
// Your code here...
})();