aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/examples/full-crop-box.html
diff options
context:
space:
mode:
authormrjive <mrjive@mrjive.it>2018-01-24 18:30:59 +0100
committerGitHub <noreply@github.com>2018-01-24 18:30:59 +0100
commitf560a3c98fc7cf4de7d86bd7f074c9995b3d240a (patch)
tree7cf16324e513afcf0446e19a0db39ec2ece21672 /library/cropperjs/examples/full-crop-box.html
parent131baa9f4584b74ab76328d776c0bb5ce603da7d (diff)
parentadd9890754780c886188504647b3058c4cc146c1 (diff)
downloadvolse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.gz
volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.tar.bz2
volse-hubzilla-f560a3c98fc7cf4de7d86bd7f074c9995b3d240a.zip
Merge pull request #11 from redmatrix/dev
Dev
Diffstat (limited to 'library/cropperjs/examples/full-crop-box.html')
-rw-r--r--library/cropperjs/examples/full-crop-box.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/library/cropperjs/examples/full-crop-box.html b/library/cropperjs/examples/full-crop-box.html
new file mode 100644
index 000000000..7065eab94
--- /dev/null
+++ b/library/cropperjs/examples/full-crop-box.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <title>Cropper.js</title>
+ <link rel="stylesheet" href="../dist/cropper.css">
+ <style>
+ .container {
+ max-width: 640px;
+ margin: 20px auto;
+ }
+
+ img {
+ max-width: 100%;
+ }
+ </style>
+</head>
+<body>
+
+ <div class="container">
+ <h1>Cropper with full crop box</h1>
+ <div>
+ <img id="image" src="../docs/images/picture.jpg" alt="Picture">
+ </div>
+ </div>
+
+ <script src="../dist/cropper.js"></script>
+ <script>
+ window.addEventListener('DOMContentLoaded', function () {
+ var image = document.querySelector('#image');
+ var cropper = new Cropper(image, {
+ viewMode: 3,
+ dragMode: 'move',
+ autoCropArea: 1,
+ restore: false,
+ modal: false,
+ guides: false,
+ highlight: false,
+ cropBoxMovable: false,
+ cropBoxResizable: false,
+ toggleDragModeOnDblclick: false,
+ });
+ });
+ </script>
+</body>
+</html>