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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
| // ribbons.js - 适配 FixIt 主题的丝带效果
(function (name, factory) {
if (typeof window === "object") {
window[name] = factory();
}
})("Ribbons", function () {
var _w = window,
_b = document.body,
_d = document.documentElement;
// 随机函数
var random = function () {
if (arguments.length === 1) {
if (Array.isArray(arguments[0])) {
var index = Math.round(random(0, arguments[0].length - 1));
return arguments[0][index];
}
return random(0, arguments[0]);
} else if (arguments.length === 2) {
return Math.random() * (arguments[1] - arguments[0]) + arguments[0];
}
return 0;
};
// 屏幕信息
var screenInfo = function (e) {
var width = Math.max(
0,
_w.innerWidth || _d.clientWidth || _b.clientWidth || 0,
),
height = Math.max(
0,
_w.innerHeight || _d.clientHeight || _b.clientHeight || 0,
),
scrollx =
Math.max(0, _w.pageXOffset || _d.scrollLeft || _b.scrollLeft || 0) -
(_d.clientLeft || 0),
scrolly =
Math.max(0, _w.pageYOffset || _d.scrollTop || _b.scrollTop || 0) -
(_d.clientTop || 0);
return {
width: width,
height: height,
ratio: width / height,
centerx: width / 2,
centery: height / 2,
scrollx: scrollx,
scrolly: scrolly,
};
};
var mouseInfo = function (e) {
var screen = screenInfo(e),
mousex = e ? Math.max(0, e.pageX || e.clientX || 0) : 0,
mousey = e ? Math.max(0, e.pageY || e.clientY || 0) : 0;
return {
mousex: mousex,
mousey: mousey,
centerx: mousex - screen.width / 2,
centery: mousey - screen.height / 2,
};
};
// 点
var Point = function (x, y) {
this.x = 0;
this.y = 0;
this.set(x, y);
};
// 点运算
Point.prototype = {
constructor: Point,
set: function (x, y) {
this.x = x || 0;
this.y = y || 0;
},
copy: function (point) {
this.x = point.x || 0;
this.y = point.y || 0;
return this;
},
multiply: function (x, y) {
this.x *= x || 1;
this.y *= y || 1;
return this;
},
divide: function (x, y) {
this.x /= x || 1;
this.y /= y || 1;
return this;
},
add: function (x, y) {
this.x += x || 0;
this.y += y || 0;
return this;
},
subtract: function (x, y) {
this.x -= x || 0;
this.y -= y || 0;
return this;
},
clampX: function (min, max) {
this.x = Math.max(min, Math.min(this.x, max));
return this;
},
clampY: function (min, max) {
this.y = Math.max(min, Math.min(this.y, max));
return this;
},
flipX: function () {
this.x *= -1;
return this;
},
flipY: function () {
this.y *= -1;
return this;
},
};
// 丝带画板
var Factory = function (options) {
this._canvas = null;
this._context = null;
this._sto = null;
this._width = 0;
this._height = 0;
this._scroll = 0;
this._ribbons = [];
this._options = {
id: "bgCanvas", //画板Id
backgroundColor: "transparent", // 修改点1: 透明背景适配所有主题
colorSaturation: "80%", //纯度
colorBrightness: "75%", //修改点2: 提高亮度使深色模式更协调
colorAlpha: 0.15, // 修改点3: 降低透明度避免遮挡内容
colorCycleSpeed: 6, //丝带不同块之间的色彩变化量
verticalPosition: "center", //丝带相对于屏幕的初始位置
horizontalSpeed: 200, //丝带水平方向移动速度参数
ribbonCount: 3, //同一时间丝带总条数
strokeSize: 0, //公共边路径样式
parallaxAmount: -0.99, //滚动偏移参数
animateSections: true, //丝带块是否偏移,显得有动感
};
this._onDraw = this._onDraw.bind(this);
this._onResize = this._onResize.bind(this);
this._onScroll = this._onScroll.bind(this);
this.setOptions(options);
this.init();
};
Factory.prototype = {
constructor: Factory,
setOptions: function (options) {
if (typeof options === "object") {
for (var key in options) {
if (options.hasOwnProperty(key)) {
this._options[key] = options[key];
}
}
}
},
//初始化
init: function () {
//初始化画板
try {
this._canvas = document.createElement("canvas");
this._canvas.style["display"] = "block";
this._canvas.style["position"] = "fixed";
this._canvas.style["margin"] = "0";
this._canvas.style["padding"] = "0";
this._canvas.style["border"] = "0";
this._canvas.style["outline"] = "0";
this._canvas.style["left"] = "0";
this._canvas.style["top"] = "0";
this._canvas.style["width"] = "100%";
this._canvas.style["height"] = "100%";
// 修改点4: 降低层级在飞鱼之下
this._canvas.style["z-index"] = "-2";
this._canvas.style["background-color"] = this._options.backgroundColor;
this._canvas.id = this._options.id;
this._onResize();
this._context = this._canvas.getContext("2d");
this._context.clearRect(0, 0, this._width, this._height);
this._context.globalAlpha = this._options.colorAlpha;
window.addEventListener("resize", this._onResize);
window.addEventListener("scroll", this._onScroll);
document.body.appendChild(this._canvas);
} catch (e) {
console.warn("Canvas Context Error: " + e.toString());
return;
}
//开始绘画
this._onDraw();
},
//生成一条丝带
addRibbon: function () {
var dir = Math.round(random(1, 9)) > 5 ? "right" : "left", //丝带延伸方向
stop = 1000,
hide = 200,
min = 0 - hide,
max = this._width + hide,
movex = 0,
movey = 0,
startx = dir === "right" ? min : max, //起始点x左边
starty = Math.round(random(0, this._height)); //起始点y左边
//丝带生成的位置
if (/^(top|min)$/i.test(this._options.verticalPosition)) {
//最上方
starty = 0 + hide;
} else if (/^(middle|center)$/i.test(this._options.verticalPosition)) {
//中间
starty = this._height / 2;
} else if (/^(bottom|max)$/i.test(this._options.verticalPosition)) {
//最下方
starty = this._height - hide;
}
if (this._options.parallaxAmount !== 0) {
starty += this._scroll; //加上滚动
}
var ribbon = [],
point1 = new Point(startx, starty),
point2 = new Point(startx, starty),
point3 = null,
color = Math.round(random(0, 360)),
delay = 0;
//从起始位置开始生成一条丝带
while (true) {
if (stop <= 0) break;
stop--;
movex = Math.round(
(Math.random() * 1 - 0.2) * this._options.horizontalSpeed,
);
movey = Math.round((Math.random() * 1 - 0.5) * (this._height * 0.25));
point3 = new Point();
point3.copy(point2);
if (dir === "right") {
point3.add(movex, movey);
if (point2.x >= max) break;
} else if (dir === "left") {
point3.subtract(movex, movey);
if (point2.x <= min) break;
}
ribbon.push({
point1: new Point(point1.x, point1.y),
point2: new Point(point2.x, point2.y),
point3: point3,
color: color, //丝带颜色
delay: delay, //延迟消失
dir: dir, //方向
alpha: 0, //透明度
phase: 0, //随机位移有关参数
});
point1.copy(point2);
point2.copy(point3);
delay += 4;
color += this._options.colorCycleSpeed;
}
this._ribbons.push(ribbon);
},
//绘制一个三角形方块
_drawRibbonSection: function (section) {
if (section) {
if (section.phase >= 1 && section.alpha <= 0) {
return true;
}
if (section.delay <= 0) {
section.phase += 0.02;
section.alpha = Math.sin(section.phase) * 1;
section.alpha = section.alpha <= 0 ? 0 : section.alpha;
section.alpha = section.alpha >= 1 ? 1 : section.alpha;
if (this._options.animateSections) {
var mod = Math.sin(1 + (section.phase * Math.PI) / 2) * 0.1;
if (section.dir === "right") {
section.point1.add(mod, 0);
section.point2.add(mod, 0);
section.point3.add(mod, 0);
} else {
section.point1.subtract(mod, 0);
section.point2.subtract(mod, 0);
section.point3.subtract(mod, 0);
}
section.point1.add(0, mod);
section.point2.add(0, mod);
section.point3.add(0, mod);
}
} else {
section.delay -= 0.5;
}
var s = this._options.colorSaturation,
l = this._options.colorBrightness,
c =
"hsla(" +
section.color +
", " +
s +
", " +
l +
", " +
section.alpha +
" )";
//绘制一个方块
this._context.save();
if (this._options.parallaxAmount !== 0) {
this._context.translate(
0,
this._scroll * this._options.parallaxAmount,
);
}
this._context.beginPath();
this._context.moveTo(section.point1.x, section.point1.y);
this._context.lineTo(section.point2.x, section.point2.y);
this._context.lineTo(section.point3.x, section.point3.y);
this._context.fillStyle = c;
this._context.fill();
if (this._options.strokeSize > 0) {
this._context.lineWidth = this._options.strokeSize;
this._context.strokeStyle = c;
this._context.lineCap = "round";
this._context.stroke();
}
this._context.restore();
}
return false;
},
//绘制丝带
_onDraw: function () {
//清空已经绘制过的丝带
for (var i = 0, t = this._ribbons.length; i < t; ++i) {
if (!this._ribbons[i]) {
this._ribbons.splice(i, 1);
}
}
this._context.clearRect(0, 0, this._width, this._height); //清空画板
for (var a = 0; a < this._ribbons.length; ++a) {
var ribbon = this._ribbons[a],
numSections = ribbon ? ribbon.length : 0,
numDone = 0;
//绘制整条丝带
for (var b = 0; b < numSections; ++b) {
if (this._drawRibbonSection(ribbon[b])) {
numDone++;
}
}
//丝带已经全部飘过屏幕,设置为null,函数前面会自动清理
if (numDone >= numSections) {
this._ribbons[a] = null;
}
}
//随机生成一条丝带
if (
this._ribbons.length < this._options.ribbonCount &&
Math.random() > 0.99
) {
this.addRibbon();
}
//调度交给系统,当需要刷新画板时调用指定的回调函数,用于提高性能
requestAnimationFrame(this._onDraw);
},
//重新设置窗体大小时需要获取窗体大小
_onResize: function (e) {
var screen = screenInfo(e);
this._width = screen.width;
this._height = screen.height;
if (this._canvas) {
this._canvas.width = this._width;
this._canvas.height = this._height;
if (this._context) {
this._context.globalAlpha = this._options.colorAlpha;
}
}
},
//滚动时获取滚动距离
_onScroll: function (e) {
var screen = screenInfo(e);
this._scroll = screen.scrolly;
},
};
return Factory;
});
//初始化并绘制 - 添加飞鱼层级保护
// 修改点5: 确保飞鱼在丝带之上
document.addEventListener("DOMContentLoaded", function () {
// 初始化丝带效果
new Ribbons({
ribbonCount: 4, // 修改点6: 减少丝带数量
parallaxAmount: -0.99,
});
// 确保飞鱼在丝带之上
setTimeout(function () {
var flyfish = document.getElementById("flyfish");
if (flyfish) {
flyfish.style.zIndex = "-1";
}
}, 1000);
});
|