jquery – 在响应图像上使用jcrop

前端之家收集整理的这篇文章主要介绍了jquery – 在响应图像上使用jcrop前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于jcrop现在正在使用触摸屏,我想做一个使用它的网络应用程序.我有一切工作,但如果我尝试使设计响应,以便用户可以在裁剪前看到整个图像(它的宽度是屏幕的百分比),则裁剪的区域将不会与所选的用户.在调整大小的图像之上进行的选择的坐标与全尺寸图像上的坐标不匹配.

Jcrop通过使用框尺寸或truesize方法解决类似的问题(当处理巨大的图像时),但如果图像的宽度是基于百分比而不是以像素为单位的给定宽度,则它们都不起作用.

我可以想到的唯一解决方案是使用媒体查询调整图像的大小,并根据屏幕的宽度制作3或4个版本,但我宁愿坚持使用基于百分比的调整大小,因为它看起来更好.

这是我的jcrop电话:

  1. var jcrop_api,boundx,boundy;
  2. $('#target').Jcrop({
  3. onChange: updatePreview,onSelect: updatePreview,aspectRatio: 0.75
  4. },function(){
  5. // Use the API to get the real image size
  6. var bounds = this.getBounds();
  7. boundx = bounds[0];
  8. boundy = bounds[1];
  9. trueSize: [900,600],// Store the API in the jcrop_api variable
  10. jcrop_api = this;
  11. });
  12. function updatePreview(c){
  13. if (parseInt(c.w) > 0){
  14. var rx = <?echo $width;?> / c.w;
  15. var ry = <?echo $height;?> / c.h;
  16.  
  17. $('#preview').css({
  18. width: Math.round(rx * boundx) + 'px',height: Math.round(ry * boundy) + 'px',marginLeft: '-' + Math.round(rx * c.x) + 'px',marginTop: '-' + Math.round(ry * c.y) + 'px'
  19. });
  20. }
  21.  
  22. $('#x').val(c.x);
  23. $('#y').val(c.y);
  24. $('#w').val(c.w);
  25. $('#h').val(c.h);
  26.  
  27. };

解决方法

TrueSize结束了做伎俩,我没有正确使用它:
  1. jQuery(function($){
  2.  
  3. // Create variables (in this scope) to hold the API and image size
  4. var jcrop_api,boundy;
  5.  
  6. $('#target').Jcrop({
  7. onChange: updatePreview,aspectRatio: 0.75,trueSize: [<?echo $width2;?>,<?echo $height2;?>]
  8. },function(){
  9. // Use the API to get the real image size
  10. var bounds = this.getBounds();
  11. boundx = bounds[0];
  12. boundy = bounds[0.75];
  13. //trueSize: [ancho,alto],// Store the API in the jcrop_api variable
  14. jcrop_api = this;
  15. });
  16.  
  17. function updatePreview(c){
  18. if (parseInt(c.w) > 0){
  19. var rx = <?echo $width;?> / c.w;
  20. var ry = <?echo $height;?> / c.h;
  21.  
  22. $('#preview').css({
  23. width: Math.round(rx * boundx) + 'px',marginTop: '-' + Math.round(ry * c.y) + 'px'
  24. });
  25. }
  26.  
  27. $('#x').val(c.x);
  28. $('#y').val(c.y);
  29. $('#w').val(c.w);
  30. $('#h').val(c.h);
  31.  
  32. };
  33.  
  34.  
  35. });

猜你在找的jQuery相关文章