forked from nicekei/jQuery-html5-canvas-panorama-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.size.html
19 lines (19 loc) · 827 Bytes
/
sample.size.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="ddpanorama.css" />
<script type="text/javascript" src="jquery.1.7.1.min.js"> </script>
<script type="text/javascript" src="jquery.ba-outside-events.min.js"> </script>
<script type="text/javascript" src="imagesloaded.pkgd.min.js"> </script>
<script type="text/javascript" src="ddpanorama.min.js"> </script>
<script type="text/javascript" src="ddpanorama.gensample.js"> </script>
</head>
<body>
<script>
addSamplePano({width:645, height:520});
addSamplePano("night3.jpeg", {ratio:9/16}, "{ratio:9/16} (note that original image's height is used)");
addSamplePano("night3.jpeg", {height:320, ratio:9/16},"{height:320, ratio:9/16}");
addSamplePano("night3.jpeg", {width:320, ratio:9/16},"{width:320, ratio:9/16}");
</script>
</body>
</html>