/home/mip/public_html/template/AdminLTE/plugins/cropper-master/examples/responsive-container.html
<!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</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>

  <!-- Scripts -->
  <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
  <script src="../dist/cropper.js"></script>
  <script>
    $(function () {
      var $image = $('#image');

      $image.cropper({
        movable: false,
        zoomable: false,
        rotatable: false,
        scalable: false
      });

      $('#replace').on('click', function () {
        $image.cropper('replace', '../docs/images/picture-2.jpg');
      });
    });
  </script>
</body>
</html>