• js 图片截取插件


     

    cropit----链接

    <!DOCTYPE html>
    <html>
      <head>
        <title>cropit</title>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
        <script src="../dist/jquery.cropit.js"></script>
    
        <style>
          .cropit-preview {
            background-color: #f8f8f8;
            background-size: cover;
            border: 5px solid #ccc;
            border-radius: 3px;
            margin-top: 7px;
             250px;
            height: 250px;
          }
    
          .cropit-preview-image-container {
            cursor: move;
          }
    
          .cropit-preview-background {
            opacity: .2;
            cursor: auto;
          }
    
          .image-size-label {
            margin-top: 10px;
          }
    
          input, .export {
            /* Use relative position to prevent from being covered by image background */
            position: relative;
            z-index: 10;
            display: block;
          }
    
          button {
            margin-top: 10px;
          }
        </style>
      </head>
      <body>
        <div class="image-editor">
          <input type="file" class="cropit-image-input">
          <div class="cropit-preview"></div>
          <input type="range" class="cropit-image-zoom-input">
          <button class="export">Export</button>
        </div>
    
        <script>
          $(function() {
            $('.image-editor').cropit({
    //            图片放大系数,系数越小放大越大,系数越大放大越小
              exportZoom: 1,
    //            是否显示图片放大后的整张背景
              imageBackground: true,
              imageBackgroundBorderWidth: 0,
            });
    
            $('.export').click(function() {
              var imageData = $('.image-editor').cropit('export');
              console.log(imageData)
    //          window.open(imageData);
            });
          });
        </script>
      </body>
    </html>
    

      

  • 相关阅读:
    Java静态方法中使用注入类
    Java FTP辅助类
    Java SFTP辅助类
    MyBatis学习总结——批量查询
    MyBatis学习总结—实现关联表查询
    Redis集群搭建与简单使用
    SQL管理工具
    MySQL锁机制
    MySQL权限管理
    yii框架下使用redis
  • 原文地址:https://www.cnblogs.com/joesbell/p/7551398.html
Copyright © 2020-2023  润新知