通过范围滑块旋转图像

时间:2019-07-11 00:52:12

标签: javascript jquery html html5-canvas cropperjs

大家好,如何通过范围滑块旋转图像?

我构建了该函数,因此它的范围可以在0到360之间,并显示值范围,它工作正常,但是如何应用此函数旋转图像?     裁剪图像脚本文档为here

我使用裁剪脚本更新了代码,请帮助旋转图像并输出到div

<!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"> -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/0.8.1/cropper.css" />
  
  <style>
    .container {
      max-width: 640px;
      margin: 20px auto;
    }

    img {
      max-width: 100%;
    }
  </style>
</head>
<body>

  <div class="container">
    <h1>Cropper with a range of aspect ratio</h1>
	
    <div>
      <img id="image" src="https://fengyuanchen.github.io/cropperjs/images/picture.jpg" alt="Picture">
    </div>
	<button onclick="cropper.getCroppedCanvas()">Save</button>
  </div>

  <!-- <script src="dist/cropper.js"></script> -->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/0.8.1/cropper.js"></script>
  <script>
    window.addEventListener('DOMContentLoaded', function () {
      var image = document.querySelector('#image');
      var minAspectRatio = 1.0;
      var maxAspectRatio = 1.0;
      var cropper = new Cropper(image, {
        ready: function () {
          var cropper = this.cropper;
          var containerData = cropper.getContainerData();
          var cropBoxData = cropper.getCropBoxData();
          var aspectRatio = cropBoxData.width / cropBoxData.height;
          var newCropBoxWidth;

          if (aspectRatio < minAspectRatio || aspectRatio > maxAspectRatio) {
            newCropBoxWidth = cropBoxData.height * ((minAspectRatio + maxAspectRatio) / 2);

            cropper.setCropBoxData({
              left: (containerData.width - newCropBoxWidth) / 2,
              width: newCropBoxWidth
            });
          }
        },
        cropmove: function () {
          var cropper = this.cropper;
          var cropBoxData = cropper.getCropBoxData();
          var aspectRatio = cropBoxData.width / cropBoxData.height;

          if (aspectRatio < minAspectRatio) {
            cropper.setCropBoxData({
              width: cropBoxData.height * minAspectRatio
            });
          } else if (aspectRatio > maxAspectRatio) {
            cropper.setCropBoxData({
              width: cropBoxData.height * maxAspectRatio
            });
          }
        }
      });
    });
  </script>
  
  <script>
function updateTextInput(val) {
          document.getElementById('textInput').value=val; 
        }
        
</script>

<input type="range" name="rangeInput" min="0" max="360" onchange="updateTextInput(this.value);">
<input type="text" id="textInput" value="">
  <!-- FULL DOCUMENTATION ON https://github.com/fengyuanchen/cropperjs -->

 
</body>
</html>

1 个答案:

答案 0 :(得分:3)

当滑块值更改时,您可以使用一些JavaScript来设置图像的旋转。由于您拥有jQuery:

$(function(){
  let slider = $('input[type=range]'),
      image = $('#image');

  slider.on('change mousemove', function(){
     image.css('transform', 'rotate(' + $(this).val() + 'deg)');
  });

});

旁注:这种事件分配-在javascript中查找元素,而不是在输入中添加onchange属性-更加灵活和可维护。

下面是一个示例:https://codepen.io/benjamin-hull/pen/ewxboE

需要注意的几件事:

我添加了'mousemove'事件监听器和'change',因此用户在移动滑块时会获得实时反馈。这可能是个问题,因为mousemove可以产生100多个事件。您可能需要查看“取消弹跳”该事件,以将其限制为合理的值。

在我的示例中,我将滑块设置为min -180,max 180和默认值0。这允许用户左右旋转。

您可能还希望旋转也可以缩放图像,因此它始终会填满框架。