aboutsummaryrefslogtreecommitdiffstats
path: root/library/cropperjs/examples/multiple-croppers.html
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-03-09 11:12:18 +0100
committerMario <mario@mariovavti.com>2018-03-09 11:12:18 +0100
commit4baf5eab16d809977a44e7911ddcab0ff8383897 (patch)
tree393f618c4cfc20f53264ecd8a26a08de0823d35d /library/cropperjs/examples/multiple-croppers.html
parent577da0eb9eb1f90a4cf7a70cfb3582cfb49007ac (diff)
parent7361af85b5488fc8bd1744389a3a332dc74276b0 (diff)
downloadvolse-hubzilla-4baf5eab16d809977a44e7911ddcab0ff8383897.tar.gz
volse-hubzilla-4baf5eab16d809977a44e7911ddcab0ff8383897.tar.bz2
volse-hubzilla-4baf5eab16d809977a44e7911ddcab0ff8383897.zip
Merge branch '3.2RC'3.2
Diffstat (limited to 'library/cropperjs/examples/multiple-croppers.html')
-rw-r--r--library/cropperjs/examples/multiple-croppers.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/library/cropperjs/examples/multiple-croppers.html b/library/cropperjs/examples/multiple-croppers.html
new file mode 100644
index 000000000..6b12e70b2
--- /dev/null
+++ b/library/cropperjs/examples/multiple-croppers.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>Multiple Croppers</h1>
+ <h3>Cropper</h3>
+ <div>
+ <img src="../docs/images/picture.jpg" alt="Picture">
+ </div>
+ <h3>Another</h3>
+ <div>
+ <img src="../docs/images/picture.jpg" alt="Picture">
+ </div>
+ </div>
+
+ <script src="../dist/cropper.js"></script>
+ <script>
+ window.addEventListener('DOMContentLoaded', function () {
+ var images = document.querySelectorAll('img');
+ var length = images.length;
+ var croppers = [];
+ var i;
+
+ for (i = 0; i < length; i++) {
+ croppers.push(new Cropper(images[i]));
+ }
+ });
+ </script>
+</body>
+</html>