-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (124 loc) · 3.89 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<canvas id="canvas" width="1000" height="400"></canvas>
</div>
<select name="" id="select" class="mt-1">
<option value="bar" selected>柱形</option>
<option value="particle">粒子</option>
<option value="circle">圆形环绕</option>
<option value="line">波浪线</option>
<option value="custom">自定义</option>
</select>
<div class="mt-1">
<audio id="audio" controls src="./victory.m4a"></audio>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
}
body {
text-align: center;
background-color: #252525;
}
#select {
width: 300px;
border-radius: 50px;
font-size: 18px;
padding: 15px;
}
.mt-1 {
margin-top: 1rem;
}
</style>
<script src="./dist/index.js"></script>
<script>
let audioel = document.getElementById("audio");
let canvasel = document.getElementById("canvas");
let select = document.getElementById('select');
canvasel.style.background = '#222';
//获取select的默认值
let type = select.options[select.selectedIndex].value;
const audioVisualizer = new transo.initAudioVisualizer({
audioElement: audioel, // audio
canvasElement: canvasel, // canvas
type, // 类型
// lineWidth:6,
fftSize: 2 ** 8,
particleSize: 3, // 粒子大小
// innerRadius:100, // 内半径
maxValue: 256, // 最大值
customHandle, //自定义渲染
// gradient: function(){ //渐变
// return '#000'
// }
});
select.addEventListener('change', selectChange);
function selectChange(e) {
let type = e.target.value;
audioVisualizer.setOptions({ type })
}
function customHandle({ dataArray, canvasWidth, canvasHeight, ctx }) {
const originalDataArray = dataArray;
let arrLen = originalDataArray.length;
const data = new Array(arrLen);
for (let i = 0; i < arrLen / 2; i++) {
data[i] = data[arrLen - i - 1] = originalDataArray[arrLen / 2 - i]
}
//创建一个线性渐变
const gradient = ctx.createLinearGradient(0, 0, 0, canvasHeight);
//渐变颜色
gradient.addColorStop(0, '#00DBDE');
gradient.addColorStop(0.5, '#FC00FF');
gradient.addColorStop(1, '#7441FF');
const len = data.length;
const lineWidth = canvasWidth / len;
for (let i = 0; i < len; i++) {
if (!data[i]) {
continue;
}
const barHeight = data[i];
const x = i * lineWidth;
const y = canvasHeight - barHeight;
ctx.lineWidth = lineWidth - 2;
ctx.strokeStyle = gradient;
//画线
ctx.beginPath();
ctx.moveTo(x, canvasHeight);
ctx.lineTo(x, y);
ctx.stroke();
//粒子
const particleSize = 3;
ctx.beginPath();
ctx.fillStyle = 'yellow';
ctx.fillRect(x, y - 20, lineWidth - 2, lineWidth - 2);
ctx.fill();
}
ctx.beginPath();
for (let i = 0; i < len; i++) {
if (!data[i]) {
continue;
}
//曲线
ctx.strokeStyle = 'red';
ctx.lineWidth = 2;
ctx.lineJoin = 'round';
ctx.lineCap = 'round';
const x1 = i * lineWidth;
const y1 = canvasHeight - data[i] - 40;
const x2 = (i + 1) * lineWidth;
const y2 = canvasHeight - data[i + 1] - 40;
ctx.quadraticCurveTo(x1, y1, (x1 + x2) / 2, (y1 + y2) / 2);
}
ctx.stroke();
}
</script>
</html>