$(function(){
$.ajax({
url: "https://api.unsplash.com/photos/?&client_id=f0afe99aaf46a21c572d5dd3d620f3cf96e287a52e8af381f4bbaa5729a02215",
success: function(result) {
unsplash = result;
$('.img-container img').each(function(i) {
var i = Math.floor((Math.random() * 10) + 1);
$(this).attr('src', unsplash[i].urls.regular);
});
$(".img-container img").one("load", function() {
imageCrop();
}).each(function(i) {
});
}
});
});
function imageCrop() {
'use strict';
var console = window.console || { log: function () {} };
var URL = window.URL || window.webkitURL;
var $image = $('#image');
var $download = $('#download');
var $dataX = $('#dataX');
var $dataY = $('#dataY');
var $dataHeight = $('#dataHeight');
var $dataWidth = $('#dataWidth');
var $dataRotate = $('#dataRotate');
var $dataScaleX = $('#dataScaleX');
var $dataScaleY = $('#dataScaleY');
var options = {
aspectRatio: 16 / 9,
preview: '.img-preview',
viewMode: 1,
crop: function (e) {
$dataX.val(Math.round(e.detail.x));