參考網(wǎng)址
創(chuàng)新互聯(lián)建站專注于橋西網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供橋西營銷型網(wǎng)站建設(shè),橋西網(wǎng)站制作、橋西網(wǎng)頁設(shè)計、橋西網(wǎng)站官網(wǎng)定制、微信小程序服務(wù),打造橋西網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供橋西網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
http://www.cnblogs.com/cjqa/p/4386489.html
http://blog.csdn.net/china_lzn/article/details/7553552(未測試)
function preview(img, selection) {
if (!selection.width || !selection.height) { return; }
var scaleX = 250 / selection.width;
var scaleY = 200 / selection.height;
var hei = $('#photo').height();
var wid = $('#photo').width();
$('#preview img').css({
width: Math.round(scaleX * wid),
height: Math.round(scaleY * hei),
marginLeft: -Math.round(scaleX * selection.x1),
marginTop: -Math.round(scaleY * selection.y1)
});
}
$(function () {
$('#photo').imgAreaSelect({
//aspectRatio: '1:1',
handles: true,
fadeSpeed: 200, onSelectChange: preview
});
});