gpt4 book ai didi

jQuery 旋转函数与 jcrop

转载 作者:行者123 更新时间:2023-12-01 05:59:38 26 4
gpt4 key购买 nike

我将 jcrop 与 jquery 一起使用,但也想使用 jQueryRotate(2.2)。裁剪工作正常,但旋转不起作用。我有两个按钮 1)crop 和另一个用于旋转。旋转将顺时针和逆时针旋转图像

<form>
<input type="hidden" size="4" id="x1" name="x" />
<input type="hidden" size="4" id="y1" name="y" />
<input type="hidden" size="4" id="x2" name="x2" />
<input type="hidden" size="4" id="y2" name="y2" />
<input type="hidden" size="4" id="w" name="w" />
<input type="hidden" size="4" id="h" name="h" />
<img src="test.jpg" id="photo" >
<input type="submit" name="sub12" value="Save Cropped Image" class="save" />
<input type="button" name="rotate1" value="Rotata" onclick="javascript:rot1()" />
</form>

jQuery(function($){
$('#photo').Jcrop()

});

function rot1()
{
$("#photo").rotate(45);
}

请帮忙

最佳答案

你可以尝试这样使用:

jQuery(function(){

$('#photo').Jcrop();

$("input[name='rotate1']").click(function() {
$("#photo").rotate(45);
return false;
});
});

关于jQuery 旋转函数与 jcrop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12508062/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com