$("#image-crop-modal").one("shown.bs.modal", function() {
//alert("d");
$("#img-crop img").cropper({
aspectRatio: 16 / 9,
preview: "#exampleFullCropperPreview > .img-preview",
responsive: true,
crop: function crop() {
var data = (0, _jquery.default)(this).data('cropper').getCropBoxData();
$inputDataX.val(Math.round(data.left));
$inputDataY.val(Math.round(data.top));
$inputDataHeight.val(Math.round(data.height));
$inputDataWidth.val(Math.round(data.width));
}
});
});
'javascript' 카테고리의 다른 글
같은 문자가 3번 이상 반복되는지 체크 (0) | 2020.07.28 |
---|---|
[야매] slidePanel + DataTables + Tab (0) | 2020.07.07 |
북마크 이벤트 응모 버튼 클릭 (0) | 2020.07.07 |
[dataTables.js] n번째 column만 ordering false 만들기 (0) | 2020.07.06 |
숫자 천 단위마다 콤마 찍는 내장 함수(toLocaleString) (0) | 2020.06.09 |
댓글