欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML5 canvas实现移动端上传头像拖拽裁剪效果

程序员文章站 2023-01-11 09:47:42
这篇文章主要为大家详细介绍了HTML5 canvas实现移动端上传头像拖拽裁剪效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下... 16-03-14...

本示例使用html5 canvas,简单的编写了上传头像的裁剪效果,移动端支持拖拽后裁剪, 虽然样式不好看,但是功能还算全:

下图为裁剪后的效果:

HTML5 canvas实现移动端上传头像拖拽裁剪效果

html部分:

xml/html code复制内容到剪贴板
  1. <!doctype html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="utf-8">  
  5.     <title>上传头像</title>  
  6.     <meta name="renderer" content="webkit">  
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">  
  8. </head>  
  9. <body>  
  10. <div id="imgcrop" style="width:200px;height:200px;border:1px solid #ccc;overflow:hidden;">  
  11.     <img src="img/test.jpg" alt="">  
  12. </div>  
  13. <input type="file" accept="image/*" />  
  14. <button id="save">保存</button>  
  15. <p>下面为剪切的图片:</p>  
  16. <div id="imgshow"></div>  
  17. </body>  
  18. </html>  

javascript部分:

javascript code复制内容到剪贴板
  1. var $imgcrop = $("#imgcrop");   
  2. var $img = $imgcrop.find("img");   
  3. var img = $img[0];   
  4. var width = parseint($imgcrop.css("width"));   
  5. var height = parseint($imgcrop.css("height"));   
  6. var startx,starty,scale = 1;   
  7. var x = 0,y = 0;   
  8. $("input").on("change",function(){   
  9.     var fr = new filereader();   
  10.     var file = this.files[0]   
  11.     //console.log(file);   
  12.     if(!/image\/\w+/.test(file.type)){   
  13.         alert(file.name + "不是图片文件!");   
  14.         return;   
  15.     }   
  16.     console.log(file);   
  17.     $img.removeattr("height width");   
  18.     fr.readasdataurl(file);   
  19.   
  20.     fr.onload = function(){   
  21.         img.src = fr.result;   
  22.         var widthinit = img.width;   
  23.         if(img.width>img.height){   
  24.             img.height = height;   
  25.             x = (width - img.width)/2;   
  26.             y = 0;   
  27.         }else{   
  28.             img.width = width;   
  29.             x = 0;   
  30.             y = (height - img.height)/2;   
  31.         }   
  32.         scale = widthinit/img.width;   
  33.         move($img, x, y);   
  34.            
  35.     };   
  36.        
  37. });   
  38.   
  39. img.addeventlistener("touchstart",function(e){     
  40.     startx = e.targettouches[0].pagex;   
  41.     starty = e.targettouches[0].pagey;   
  42.     
  43.     return;     
  44.   
  45. });    
  46. img.addeventlistener("touchmove",function(e){     
  47.     e.preventdefault();     
  48.     e.stoppropagation();     
  49.   
  50.     var changex = e.changedtouches[0].pagex - startx + x;   
  51.     var changey = e.changedtouches[0].pagey - starty + y;   
  52.   
  53.     move($(this), changex, changey);   
  54.     return;     
  55.      
  56. });    
  57. img.addeventlistener("touchend",function(e){      
  58.    var changex = e.changedtouches[0].pagex - startx + x;   
  59.     var changey = e.changedtouches[0].pagey - starty + y;   
  60.   
  61.     x = x + e.changedtouches[0].pagex - startx;   
  62.     y = y + e.changedtouches[0].pagey - starty;   
  63.   
  64.     move($(this), changex, changey);   
  65.     return;     
  66.      
  67. });     
  68. //确定目标图片的样式   
  69. function move(ele, x, y){   
  70.     ele.css({   
  71.         '-webkit-transform' : 'translate3d(' + x + 'px, ' + y + 'px, 0)',   
  72.         'transform' : 'translate3d(' + x + 'px, ' + y + 'px, 0)'  
  73.     });   
  74. }   
  75.   
  76. $("#save").on("click",function(){   
  77.     var url = imagedata($img);   
  78.     console.log(url);   
  79.   
  80.     $("#imgshow").html("<img src="+url+" />");;   
  81. });   
  82. //裁剪图片   
  83. function imagedata($img) {   
  84.         var canvas = document.createelement('canvas');   
  85.         var ctx = canvas.getcontext('2d');   
  86.         canvas.width = width ;   
  87.         canvas.height = height;   
  88.         ctx.drawimage(img, -x*scale, -y*scale, width*scale, height*scale, 0, 0, width, height);   
  89.         return canvas.todataurl();   
  90.     }   
  91.   

以上就是本文的全部内容,希望对大家的学习有所帮助。

原文:http://www.cnblogs.com/yifengblog/p/5265598.html