-
Notifications
You must be signed in to change notification settings - Fork 14
/
embed.html
55 lines (50 loc) · 1.5 KB
/
embed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Embedded Verovio App</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
#app {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<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
}
function getParameterByName( name )
{
var match = RegExp( '[?&]' + name + '=([^&]*)' ).exec( window.location.search );
return match && decodeURIComponent( match[1].replace( /\+/g, ' ' ) );
}
// A MEI file
let file = 'https://www.verovio.org/editor/brahms.mei';
let urlFile = getParameterByName( 'file' );
if ( urlFile != null )
{
file = urlFile;
}
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>