diff options
author | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-05 08:46:42 +0000 |
commit | bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6 (patch) | |
tree | 8929845be585b09d0f420621281c5531e1efad3e /library/cropperjs/docs/examples/multiple-croppers.html | |
parent | 6f93d9848c43019d43ea76c27d42d657ba031cd7 (diff) | |
parent | fdefa101d84dc2a9424eaedbdb003a4c30ec5d01 (diff) | |
download | volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.gz volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.tar.bz2 volse-hubzilla-bafbf0416462c6f18c3fb6c8c06a063c8d6fdae6.zip |
Merge branch '5.0RC'5.0
Diffstat (limited to 'library/cropperjs/docs/examples/multiple-croppers.html')
-rw-r--r-- | library/cropperjs/docs/examples/multiple-croppers.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/library/cropperjs/docs/examples/multiple-croppers.html b/library/cropperjs/docs/examples/multiple-croppers.html new file mode 100644 index 000000000..5ccc6c32b --- /dev/null +++ b/library/cropperjs/docs/examples/multiple-croppers.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>Multiple Croppers</h1> + <h3>Cropper</h3> + <div> + <img src="../images/picture.jpg" alt="Picture"> + </div> + <h3>Another</h3> + <div> + <img src="../images/picture.jpg" alt="Picture"> + </div> + </div> + <script src="../js/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> |