aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/docs/examples/full-crop-box.html
diff options
context:
space:
mode:
Diffstat (limited to 'library/cropperjs/docs/examples/full-crop-box.html')
-rw-r--r--library/cropperjs/docs/examples/full-crop-box.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/library/cropperjs/docs/examples/full-crop-box.html b/library/cropperjs/docs/examples/full-crop-box.html
new file mode 100644
index 000000000..fe0bdd8e1
--- /dev/null
+++ b/library/cropperjs/docs/examples/full-crop-box.html
@@ -0,0 +1,46 @@
+<!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="../css/cropper.css">
+ <style>
+ .container {
+ margin: 20px auto;
+ max-width: 640px;
+ }
+
+ img {
+ max-width: 100%;
+ }
+ </style>
+</head>
+<body>
+ <div class="container">
+ <h1>Cropper with full crop box</h1>
+ <div>
+ <img id="image" src="../images/picture.jpg" alt="Picture">
+ </div>
+ </div>
+ <script src="../js/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>