Created
September 23, 2013 22:11
-
-
Save Boztown/6677666 to your computer and use it in GitHub Desktop.
jCrop center selection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = 50; | |
var y = 50; | |
var x1 = jQuery('#cropper img').width() - 100; | |
var y1 = jQuery('#cropper img').height() - 100; | |
jQuery('#cropper img').Jcrop({ | |
aspectRatio: 1, | |
setSelect: [ x, y, x1, y1 ] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment