http://www.gastonrobledo.com.ar/cropzoom/index.html
这里下的,安装说明配置的,剪切什么都行,但是最后点crop总是没反应,不能生成图片
请问有谁成功的case打包一个吧,

解决方案 »

  1.   

    页面的代码是<div class="Post" >
    <div class="Post-body">
    <div class="Post-inner">
      <div class="PostMetadataHeader"></div>
    <div class="PostContent">
    <div class="boxes">
    <div id="crop_container" style="text-align:left;"></div>
    <div class="result">
    <div class="txt">Here you will see the cropped image</div>
    </div> 
    <div class="cleared"></div> 
    </div>  
    <br/>
    <span class="button-wrapper" id="crop">
    <span class="l"> </span>
    <span class="r"> </span>
    <a class="button" href="javascript:void(0)">Crop</a>
    </span>
    &nbsp;
    <span class="button-wrapper" id="restore">
    <span class="l"> </span>
    <span class="r"> </span>
    <a class="button" href="javascript:void(0)">Restore</a>
    </span>
    </div>
    <div class="cleared"></div>
    </div>
    </div>
    </div>按钮的js代码是        $('#crop').click(function(){ 
                cropzoom.send('resize_and_crop.php','POST',{},function(rta){
                    $('.result').find('img').remove();
                    var img = $('<img />').attr('src',rta);
                    $('.result').find('.txt').hide().end().append(img);
                });
            });
      

  2.   

    用的就是官方的那个php处理页面