September 2018
Intermediate to advanced
328 pages
9h 10m
English
Let's create a file named js-with-glue.html in the /chapter-06-interact-with-js folder and populate it with the following contents:
<!doctype html><html lang="en-us"><head> <title>Interact with JS using Glue Code</title></head><body> <h1>Interact with JS using Glue Code</h1> <canvas id="myCanvas" width="255" height="255"></canvas> <div style="margin-top: 16px;"> <button id="actionButton" style="width: 100px; height: 24px;">Pause</button> <span style="width: 100px; margin-left: 8px;">Status:</span> <span id="runStatus" style="width: 100px;"></span> </div> <script type="application/javascript" src="js-with-glue.js"></script> <script type="application/javascript"> Module() .then(result => { const m = result.asm; m._init(); // Move ...Read now
Unlock full access