-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzoom_test.html
24 lines (24 loc) · 908 Bytes
/
zoom_test.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
</head>
<body>
<p> Two fingers to zoom, rotate, and move </p>
<p> Double Click to reset </p>
<div width=320 height=240 style="overflow:hidden;">
<img id="mysenn" width=320 height=240 src="ulam500.png">
</div>
<p> Single finger is for page scroll.</p>
<p>Get it here</p>
<a href="https://github.com/anitasv/zoom">https://github.com/anitasv/zoom</a>
<script type="text/javascript" src="zoom_3Apr2023.min.js"> </script>
<script type="text/javascript">
var img = document.getElementById('mysenn');
var zm = new Zoom(img, {
minZoom: .5,
maxZoom: 2.0
});
</script>
</body>
</html>