Mercurial > hg > orthanc-stone
comparison Applications/Samples/Web/simple-viewer-single-file.html @ 319:daa04d15192c am-2
new SimpleViewer sample that has been split in multiple files to be able to scale it
author | am@osimis.io |
---|---|
date | Thu, 11 Oct 2018 13:16:54 +0200 |
parents | |
children | 8bf717c4e497 |
comparison
equal
deleted
inserted
replaced
318:3a4ca166fafa | 319:daa04d15192c |
---|---|
1 <!doctype html> | |
2 | |
3 <html lang="us"> | |
4 <head> | |
5 <meta charset="utf-8" /> | |
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
7 | |
8 <!-- Disable pinch zoom on mobile devices --> | |
9 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
10 <meta name="HandheldFriendly" content="true" /> | |
11 | |
12 <title>Simple Viewer</title> | |
13 <link href="samples-styles.css" rel="stylesheet" /> | |
14 | |
15 <body> | |
16 <div id="breadcrumb"> | |
17 <span id="patient-id"></span> | |
18 <span id="study-description"></span> | |
19 <span id="series-description"></span> | |
20 </div> | |
21 <div> | |
22 <canvas id="canvas" data-width-ratio="20" data-height-ratio="50"></canvas> | |
23 <canvas id="canvas2" data-width-ratio="70" data-height-ratio="50"></canvas> | |
24 </div> | |
25 <div id="toolbox"> | |
26 <input tool-selector="line-measure" type="radio" name="radio-tool-selector" class="tool-selector">line | |
27 <input tool-selector="circle-measure" type="radio" name="radio-tool-selector" class="tool-selector">circle | |
28 <button action-trigger="action1" class="action-trigger">action1</button> | |
29 <button action-trigger="action2" class="action-trigger">action2</button> | |
30 </div> | |
31 <script type="text/javascript" src="app-simple-viewer-single-file.js"></script> | |
32 </body> | |
33 | |
34 </html> |