# Note
音符类型。
# 属性
| 名称 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| beam | Beam[] | null | 时值线 |
| data | NoteData[] | null | 音符数据 |
| dot | Dot | null | 附点 |
| id | string | - | 音符ID |
| notations | Notations | - | 音符记号 |
| staff | Clef | - | 所在谱号 |
| stem | Stem | null | 连音线 |
| time | Time | null | 时间 |
| timeModification | TimeModification | null | 时值变化 |
| type | NoteType | - | 音符类型 |
| kind | NoteKind | - | 音符显示类型 |
# 示例
{
"beam": [
"continue"
],
"data": [
{
"fret": 0,
"pitch": {
"alter": null,
"octave": 3,
"step": "G"
},
"string": 3
},
{
"fret": 0,
"pitch": {
"alter": null,
"octave": 3,
"step": "G"
},
"string": 3
}
],
"dot": null,
"id": "N_2_2",
"notations": {
"slur": null,
"tied": null,
"tuplet": null
},
"stem": "up",
"time": {
"duration": 500,
"end": 1000,
"start": 500
},
"timeModification": null,
"type": "eighth",
"kind": "chord"
}
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
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