diff options
author | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-01-11 10:30:12 +0000 |
commit | f645c6f3a57bf5f53bbb2bde362b2447f725c977 (patch) | |
tree | 9b37650aad46296c5d98a55969348ebb4ee2d097 /library/cropperjs/examples/fixed-crop-box.html | |
parent | 4c1c6908165e5c4fb1b7238f66764f89faa2301a (diff) | |
download | volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.gz volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.tar.bz2 volse-hubzilla-f645c6f3a57bf5f53bbb2bde362b2447f725c977.zip |
update cropperjs to the recent version
Diffstat (limited to 'library/cropperjs/examples/fixed-crop-box.html')
-rw-r--r-- | library/cropperjs/examples/fixed-crop-box.html | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/library/cropperjs/examples/fixed-crop-box.html b/library/cropperjs/examples/fixed-crop-box.html deleted file mode 100644 index b9f1101fb..000000000 --- a/library/cropperjs/examples/fixed-crop-box.html +++ /dev/null @@ -1,48 +0,0 @@ -<!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 fixed 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, { - dragMode: 'move', - aspectRatio: 16 / 9, - autoCropArea: 0.65, - restore: false, - guides: false, - center: false, - highlight: false, - cropBoxMovable: false, - cropBoxResizable: false, - toggleDragModeOnDblclick: false, - }); - }); - </script> -</body> -</html> |