mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-29 19:51:27 +01:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
|
/* global wpSiteIconCropData, jQuery */
|
||
|
(function($) {
|
||
|
var jcrop_api = {},
|
||
|
siteIconCrop = {
|
||
|
|
||
|
updateCoords : function ( coords ) {
|
||
|
$( '#crop-x' ).val( coords.x );
|
||
|
$( '#crop-y' ).val( coords.y );
|
||
|
$( '#crop-width' ).val( coords.w );
|
||
|
$( '#crop-height' ).val( coords.h );
|
||
|
|
||
|
siteIconCrop.showPreview( coords );
|
||
|
},
|
||
|
|
||
|
showPreview : function( coords ){
|
||
|
var rx = 64 / coords.w,
|
||
|
ry = 64 / coords.h,
|
||
|
preview_rx = 16 / coords.w,
|
||
|
preview_ry = 16 / coords.h,
|
||
|
$cropImage = $( '#crop-image' ),
|
||
|
$homeIcon = $( '#preview-homeicon' ),
|
||
|
$favicon = $( '#preview-favicon' );
|
||
|
|
||
|
$homeIcon.css({
|
||
|
width: Math.round(rx * $cropImage.attr( 'width' ) ) + 'px',
|
||
|
height: Math.round(ry * $cropImage.attr( 'height' ) ) + 'px',
|
||
|
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
|
||
|
marginTop: '-' + Math.round(ry * coords.y) + 'px'
|
||
|
});
|
||
|
|
||
|
$favicon.css({
|
||
|
width: Math.round( preview_rx * $cropImage.attr( 'width' ) ) + 'px',
|
||
|
height: Math.round( preview_ry * $cropImage.attr( 'height' ) ) + 'px',
|
||
|
marginLeft: '-' + Math.round( preview_rx * coords.x ) + 'px',
|
||
|
marginTop: '-' + Math.floor( preview_ry* coords.y ) + 'px'
|
||
|
});
|
||
|
},
|
||
|
|
||
|
ready: function() {
|
||
|
jcrop_api = $.Jcrop( '#crop-image' );
|
||
|
jcrop_api.setOptions({
|
||
|
aspectRatio: 1,
|
||
|
onSelect: siteIconCrop.updateCoords,
|
||
|
onChange: siteIconCrop.updateCoords,
|
||
|
minSize: [ wpSiteIconCropData.min_size, wpSiteIconCropData.min_size ]
|
||
|
});
|
||
|
jcrop_api.animateTo([wpSiteIconCropData.init_x, wpSiteIconCropData.init_y, wpSiteIconCropData.init_size, wpSiteIconCropData.init_size]);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
siteIconCrop.ready();
|
||
|
|
||
|
})(jQuery);
|