UNPKG
jcrop-0.9.8
Version:
latest (1.0.0)
1.0.0
Jcrop Javascript Image Cropper
github.com/tapmodo/Jcrop
tapmodo/Jcrop
jcrop-0.9.8
/
build
/
demos
/
non-image
/
inline.js
13 lines
(8 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
jQuery
(
function
(
$
){
// I did JSON.stringify(jcrop_api.tellSelect()) on a crop I liked:
var
c = {
"x"
:
13
,
"y"
:
7
,
"x2"
:
487
,
"y2"
:
107
,
"w"
:
474
,
"h"
:
100
}; $(
'#target'
).
Jcrop
({
bgFade
:
true
,
setSelect
: [c.
x
,c.
y
,c.
x2
,c.
y2
] }); });