forked from tadoogie/MCA-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verovio.html
54 lines (51 loc) · 1.41 KB
/
verovio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Piece in Verovio</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
.header {
padding: 20px;
height:80px;
}
#app {
height: auto;
width: 100%;
position: absolute;
top: 80px;
bottom: 0;
}
</style>
</head>
<body>
<div class="header"><h1>Week 3</h1>
<p>[Insert your response to task 2 here.]</p></div>
<div id="app">Verovio is loading...</div>
<script type="module">
import 'https://www.verovio.org/javascript/app/verovio-app.js';
const options = {
defaultView: 'responsive', // default is 'responsive', alternative is 'document'
defaultZoom: 3, // 0-7, default is 4
enableResponsive: true, // default is true
enableDocument: true // default is true
}
// A MusicXML file
var file = 'data/myfile_week3.mei';
// A MEI file
//var file = 'https://www.verovio.org/editor/brahms.mei';
const app = new Verovio.App(document.getElementById("app"), options);
fetch(file)
.then(function(response) {
return response.text();
})
.then(function(text) {
app.loadData(text);
});
</script>
</body>
</html>