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/examples/responsive-container.html | |
parent | 6f93d9848c43019d43ea76c27d42d657ba031cd7 (diff) | |
parent | fdefa101d84dc2a9424eaedbdb003a4c30ec5d01 (diff) | |
download | volse-hubzilla-5.0.tar.gz volse-hubzilla-5.0.tar.bz2 volse-hubzilla-5.0.zip |
Merge branch '5.0RC'5.0
Diffstat (limited to 'library/cropperjs/examples/responsive-container.html')
-rw-r--r-- | library/cropperjs/examples/responsive-container.html | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/library/cropperjs/examples/responsive-container.html b/library/cropperjs/examples/responsive-container.html deleted file mode 100644 index c1aa7483b..000000000 --- a/library/cropperjs/examples/responsive-container.html +++ /dev/null @@ -1,49 +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 { - width: 100%; - } - </style> -</head> -<body> - - <div class="container"> - <h1>Cropper with responsive container</h1> - <p> - <button type="button" id="replace">Replace Image</button> - </p> - <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, { - movable: false, - zoomable: false, - rotatable: false, - scalable: false - }); - - document.getElementById('replace').onclick = function () { - cropper.replace('../docs/images/picture-2.jpg'); - }; - }); - </script> -</body> -</html> |