forked from tybro0103/jWindowCrop
-
Notifications
You must be signed in to change notification settings - Fork 2
/
jquery.jWindowCrop.js
237 lines (219 loc) · 9.71 KB
/
jquery.jWindowCrop.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
* jWindowCrop v1.0.0
*
* Copyright (c) 2012 Tyler Brown
* Licensed under the MIT license.
*
*/
(function($){
function fillContainer(val, targetLength, containerLength) { // ensure that no gaps are between target's edges and container's edges
if(val + targetLength < containerLength) val = containerLength-targetLength;
if(val > 0) val = 0;
return val;
}
$.jWindowCrop = function(image, options){
var base = this;
base.$image = $(image); // target image jquery element
base.originalHeight = base.$image.css('height');
base.originalWidth = base.$image.css('width');
base.image = image; // target image dom element
base.$image.data("jWindowCrop", base); // target frame jquery element
base.namespace = 'jWindowCrop';
base.originalWidth = 0;
base.isDragging = false;
base.init = function(){
base.$image.css({display:'none'}); // hide image until loaded
base.options = $.extend({},$.jWindowCrop.defaultOptions, options);
if(base.options.zoomSteps < 2) base.options.zoomSteps = 2;
base.$image.addClass('jwc_image').wrap('<div class="jwc_frame" />'); // wrap image in frame
base.$frame = base.$image.parent();
base.$frame.append($('<span class="jwc_loading_text">').text(base.options.loadingText));
base.$frame.append('<div class="jwc_controls" style="display:'+(base.options.showControlsOnStart ? 'block' : 'none')+';"><span>click to drag</span><a href="#" class="jwc_zoom_in"></a><a href="#" class="jwc_zoom_out"></a></div>');
base.$frame.css({'overflow': 'hidden', 'position': 'relative', 'width': base.options.targetWidth, 'height': base.options.targetHeight});
base.$image.css({'position': 'absolute', 'top': '0px', 'left': '0px'});
initializeDimensions();
base.$frame.find('.jwc_zoom_in').on('click.'+base.namespace, base.zoomIn);
base.$frame.find('.jwc_zoom_out').on('click.'+base.namespace, base.zoomOut);
base.$frame.on('mouseenter.'+base.namespace, handleMouseEnter);
base.$frame.on('mouseleave.'+base.namespace, handleMouseLeave);
base.$image.on('load.'+base.namespace, handeImageLoad);
base.$image.on('mousedown.'+base.namespace, handleMouseDown);
$(document).on('mousemove.'+base.namespace, handleMouseMove);
$(document).on('mouseup.'+base.namespace, handleMouseUp);
};
base.setZoom = function(percent) {
if(base.minPercent >= 1) {
percent = base.minPercent;
} else if(percent > 1.0) {
percent = 1;
} else if(percent < base.minPercent) {
percent = base.minPercent;
}
base.$image.width(Math.ceil(base.originalWidth*percent));
base.$image.height(Math.ceil(base.originalHeight*percent));
base.workingPercent = percent;
focusOnCenter();
updateResult();
};
base.zoomIn = function() {
var zoomIncrement = (1.0 - base.minPercent) / (base.options.zoomSteps-1);
base.setZoom(base.workingPercent+zoomIncrement);
return false;
};
base.zoomOut = function() {
var zoomIncrement = (1.0 - base.minPercent) / (base.options.zoomSteps-1);
base.setZoom(base.workingPercent-zoomIncrement);
return false;
};
base.reset = function() {
base.originalWidth = 0;
base.originalHeight = 0;
base.options.cropX = null;
base.options.cropY = null;
base.options.cropW = null;
base.options.cropH = null;
base.workingPercent = null;
base.$image.width('');
base.$frame.css({'width': base.options.targetWidth, 'height': base.options.targetHeight});
initializeDimensions();
};
base.destroy = function() {
// remove event handlers
base.$image.off('load.'+base.namespace, handeImageLoad);
base.$image.off('mousedown.'+base.namespace, handleMouseDown);
$(document).off('mousemove.'+base.namespace, handleMouseMove);
$(document).off('mouseup.'+base.namespace, handleMouseUp);
base.$image.css({display:''}); // re-show image
// clear out the positioning info we added
base.$image.css({'position': '', 'top': '', 'left': '', 'width':base.originalWidth, 'height':base.originalHeight});
// remove the controls
base.$frame.find('.jwc_controls').remove();
// remove the "loading" text
base.$frame.find('.jwc_loading_text').remove();
// remove the css from the image and then unwrap the frame from the image
base.$image.removeClass('jwc_image').unwrap(); // unwrap image from the frame
base.$frame = null;
base.$image = null;
};
function initializeDimensions() {
if(base.originalWidth == 0) {
base.originalWidth = base.$image.width();
base.originalHeight = base.$image.height();
}
if(base.originalWidth > 0) {
// first calculate the "all the way zoomed out" position
// this should always still fill the frame so there's no blank space.
// this will be the value you're never allowed to get lower than.
var widthRatio = base.options.targetWidth / base.originalWidth;
var heightRatio = base.options.targetHeight / base.originalHeight;
if(widthRatio >= heightRatio) {
base.minPercent = (base.originalWidth < base.options.targetWidth) ? (base.options.targetWidth / base.originalWidth) : widthRatio;
} else {
base.minPercent = (base.originalHeight < base.options.targetHeight) ? (base.options.targetHeight / base.originalHeight) : heightRatio;
}
// now if they've set initial width and height, calculate the
// starting zoom percentage.
if (base.options.cropW!==null && base.options.cropW!=='' && base.options.cropH!==null && base.options.cropH!=='') {
widthRatio = base.options.targetWidth / base.options.cropW;
heightRatio = base.options.targetHeight / base.options.cropH;
if(widthRatio >= heightRatio) {
var cropPercent = (base.originalWidth < base.options.targetWidth) ? (base.options.targetWidth / base.originalWidth) : widthRatio;
} else {
var cropPercent = (base.originalHeight < base.options.targetHeight) ? (base.options.targetHeight / base.originalHeight) : heightRatio;
}
}
// If they didn't specify anything then use the above "all the
// way zoomed out" value.
else {
var cropPercent = base.minPercent;
}
// for the initial zoom we'll just jump into the center of the image.
base.focalPoint = {'x': Math.round(base.originalWidth/2), 'y': Math.round(base.originalHeight/2)};
base.setZoom(cropPercent);
// now if presets x&y have been passed, then we have to slide over
// to the new position after zooming. Why after? because the initial
// position might not be valid until after we zoom...
if (base.options.cropX!==null && base.options.cropX!=='' && base.options.cropY!==null && base.options.cropY!=='') {
base.$image.css({'left' : (Math.floor(parseInt(base.options.cropX)*base.workingPercent*-1)+'px'), 'top' : (Math.floor(parseInt(base.options.cropY)*base.workingPercent*-1)+'px')});
storeFocalPoint();
// make sure we notify the onChange function about this...
updateResult();
}
// now that we've loaded and positioned the image, we can display it
base.$image.fadeIn('fast');
}
}
function storeFocalPoint() {
var x = (parseInt(base.$image.css('left'))*-1 + base.options.targetWidth/2) / base.workingPercent;
var y = (parseInt(base.$image.css('top'))*-1 + base.options.targetHeight/2) / base.workingPercent;
base.focalPoint = {'x': Math.round(x), 'y': Math.round(y)};
}
function focusOnCenter() {
var left = fillContainer((Math.round((base.focalPoint.x*base.workingPercent) - base.options.targetWidth/2)*-1), base.$image.width(), base.options.targetWidth);
var top = fillContainer((Math.round((base.focalPoint.y*base.workingPercent) - base.options.targetHeight/2)*-1), base.$image.height(), base.options.targetHeight);
base.$image.css({'left': (left.toString()+'px'), 'top': (top.toString()+'px')})
storeFocalPoint();
}
function updateResult() {
base.result = {
cropX: Math.floor(parseInt(base.$image.css('left'))/base.workingPercent*-1),
cropY: Math.floor(parseInt(base.$image.css('top'))/base.workingPercent*-1),
cropW: Math.round(base.options.targetWidth/base.workingPercent),
cropH: Math.round(base.options.targetHeight/base.workingPercent),
mustStretch: (base.minPercent > 1)
};
base.options.onChange.call(base.image, base.result);
}
function handeImageLoad() {
initializeDimensions();
}
function handleMouseDown(event) {
event.preventDefault(); //some browsers do image dragging themselves
base.isDragging = true;
base.dragMouseCoords = {x: event.pageX, y: event.pageY};
base.dragImageCoords = {x: parseInt(base.$image.css('left')), y: parseInt(base.$image.css('top'))}
}
function handleMouseUp() {
base.isDragging = false;
}
function handleMouseMove(event) {
if(base.isDragging) {
var xDif = event.pageX - base.dragMouseCoords.x;
var yDif = event.pageY - base.dragMouseCoords.y;
var newLeft = fillContainer((base.dragImageCoords.x + xDif), base.$image.width(), base.options.targetWidth);
var newTop = fillContainer((base.dragImageCoords.y + yDif), base.$image.height(), base.options.targetHeight);
base.$image.css({'left' : (newLeft.toString()+'px'), 'top' : (newTop.toString()+'px')});
storeFocalPoint();
updateResult();
}
}
function handleMouseEnter() {
if(base.options.smartControls) base.$frame.find('.jwc_controls').fadeIn('fast');
}
function handleMouseLeave() {
if(base.options.smartControls) base.$frame.find('.jwc_controls').fadeOut('fast');
}
base.init();
};
$.jWindowCrop.defaultOptions = {
targetWidth: 320,
targetHeight: 180,
zoomSteps: 10,
loadingText: 'Loading...',
smartControls: true,
showControlsOnStart: true,
cropX: null,
cropY: null,
cropW: null,
cropH: null,
onChange: function() {}
};
$.fn.jWindowCrop = function(options){
return this.each(function(){
(new $.jWindowCrop(this, options));
});
};
$.fn.getjWindowCrop = function(){
return this.data("jWindowCrop");
};
})(jQuery);