diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-23 16:42:24 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-23 16:42:24 -0800 |
commit | 5902528bae21b560b6be4879e5e87ed36ce099b6 (patch) | |
tree | 5588a1bd3d7cbf1f0444cce96931b3a28640101c /library/cropperjs/examples/fixed-crop-box.html | |
parent | 1e8dcaffc977be9757b14ad23a4cc9f98c70ae60 (diff) | |
download | volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.tar.gz volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.tar.bz2 volse-hubzilla-5902528bae21b560b6be4879e5e87ed36ce099b6.zip |
undo and redo adding new cropper library as it had a .git config from the original project
Diffstat (limited to 'library/cropperjs/examples/fixed-crop-box.html')
-rw-r--r-- | library/cropperjs/examples/fixed-crop-box.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/library/cropperjs/examples/fixed-crop-box.html b/library/cropperjs/examples/fixed-crop-box.html new file mode 100644 index 000000000..b9f1101fb --- /dev/null +++ b/library/cropperjs/examples/fixed-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 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> |