view Applications/Samples/Web/single-frame-editor.html @ 326:612238b3f3e8 am-2

all 4 samples now working in Qt, SDL and wasm
author am@osimis.io
date Tue, 16 Oct 2018 12:57:38 +0200
parents
children 8bf717c4e497
line wrap: on
line source

<!doctype html>

<html lang="us">
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <!-- Disable pinch zoom on mobile devices -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="HandheldFriendly" content="true" />

    <title>Simple Viewer</title>
    <link href="samples-styles.css" rel="stylesheet" />

<body>
  <div>
    <canvas id="canvas" data-width-ratio="100" data-height-ratio="100"></canvas>
  </div>
  <script type="text/javascript" src="app-single-frame-editor.js"></script>
</body>

</html>