UNPKG

@squarebit/continuo

Version:

Select notes on a rendered MEI music score and create permalinks using the Music Addressability URL scheme.

38 lines (33 loc) 1.04 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Continuo Test</title> <script src="http://www.verovio.org/javascript/latest/verovio-toolkit.js"></script> <script src="../dist/js/continuo.js"></script> <link rel="stylesheet" type="text/css" href="../dist/css/continuo.css" /> <style> svg{ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } </style> </head> <body> <div id="continuo" style="width: 100%; height: 100%; "> &nbsp; </div> <script> var cnt = new Continuo({el: "#continuo", mei: './mei/DC0101.xml'}); cnt.render(); </script> </body> </html>