mirror of https://github.com/interlegis/sapl.git
19 changed files with 2823 additions and 16 deletions
|
After Width: | Height: | Size: 329 B |
@ -0,0 +1,9 @@ |
|||||
|
div.jcrop-image.size-warning .jcrop-hline, |
||||
|
div.jcrop-image.size-warning .jcrop-vline { |
||||
|
border: 1px solid red; |
||||
|
background: none; |
||||
|
} |
||||
|
body.change-form .jcrop-holder + .help, |
||||
|
body.change-form .allow-fullsize + .help { clear: left; } |
||||
|
body.change-form .jcrop-holder { float:left; } |
||||
|
div.allow-fullsize { padding: 5px 0 0 10px; } |
||||
@ -0,0 +1,167 @@ |
|||||
|
/* jquery.Jcrop.css v0.9.12 - MIT License */ |
||||
|
/* |
||||
|
The outer-most container in a typical Jcrop instance |
||||
|
If you are having difficulty with formatting related to styles |
||||
|
on a parent element, place any fixes here or in a like selector |
||||
|
|
||||
|
You can also style this element if you want to add a border, etc |
||||
|
A better method for styling can be seen below with .jcrop-light |
||||
|
(Add a class to the holder and style elements for that extended class) |
||||
|
*/ |
||||
|
.jcrop-holder { |
||||
|
direction: ltr; |
||||
|
text-align: left; |
||||
|
/* IE10 touch compatibility */ |
||||
|
-ms-touch-action: none; |
||||
|
} |
||||
|
/* Selection Border */ |
||||
|
.jcrop-vline, |
||||
|
.jcrop-hline { |
||||
|
background: #ffffff url("Jcrop.gif"); |
||||
|
font-size: 0; |
||||
|
position: absolute; |
||||
|
} |
||||
|
.jcrop-vline { |
||||
|
height: 100%; |
||||
|
width: 1px !important; |
||||
|
} |
||||
|
.jcrop-vline.right { |
||||
|
right: 0; |
||||
|
} |
||||
|
.jcrop-hline { |
||||
|
height: 1px !important; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.jcrop-hline.bottom { |
||||
|
bottom: 0; |
||||
|
} |
||||
|
/* Invisible click targets */ |
||||
|
.jcrop-tracker { |
||||
|
height: 100%; |
||||
|
width: 100%; |
||||
|
/* "turn off" link highlight */ |
||||
|
-webkit-tap-highlight-color: transparent; |
||||
|
/* disable callout, image save panel */ |
||||
|
-webkit-touch-callout: none; |
||||
|
/* disable cut copy paste */ |
||||
|
-webkit-user-select: none; |
||||
|
} |
||||
|
/* Selection Handles */ |
||||
|
.jcrop-handle { |
||||
|
background-color: #333333; |
||||
|
border: 1px #eeeeee solid; |
||||
|
width: 7px; |
||||
|
height: 7px; |
||||
|
font-size: 1px; |
||||
|
} |
||||
|
.jcrop-handle.ord-n { |
||||
|
left: 50%; |
||||
|
margin-left: -4px; |
||||
|
margin-top: -4px; |
||||
|
top: 0; |
||||
|
} |
||||
|
.jcrop-handle.ord-s { |
||||
|
bottom: 0; |
||||
|
left: 50%; |
||||
|
margin-bottom: -4px; |
||||
|
margin-left: -4px; |
||||
|
} |
||||
|
.jcrop-handle.ord-e { |
||||
|
margin-right: -4px; |
||||
|
margin-top: -4px; |
||||
|
right: 0; |
||||
|
top: 50%; |
||||
|
} |
||||
|
.jcrop-handle.ord-w { |
||||
|
left: 0; |
||||
|
margin-left: -4px; |
||||
|
margin-top: -4px; |
||||
|
top: 50%; |
||||
|
} |
||||
|
.jcrop-handle.ord-nw { |
||||
|
left: 0; |
||||
|
margin-left: -4px; |
||||
|
margin-top: -4px; |
||||
|
top: 0; |
||||
|
} |
||||
|
.jcrop-handle.ord-ne { |
||||
|
margin-right: -4px; |
||||
|
margin-top: -4px; |
||||
|
right: 0; |
||||
|
top: 0; |
||||
|
} |
||||
|
.jcrop-handle.ord-se { |
||||
|
bottom: 0; |
||||
|
margin-bottom: -4px; |
||||
|
margin-right: -4px; |
||||
|
right: 0; |
||||
|
} |
||||
|
.jcrop-handle.ord-sw { |
||||
|
bottom: 0; |
||||
|
left: 0; |
||||
|
margin-bottom: -4px; |
||||
|
margin-left: -4px; |
||||
|
} |
||||
|
/* Dragbars */ |
||||
|
.jcrop-dragbar.ord-n, |
||||
|
.jcrop-dragbar.ord-s { |
||||
|
height: 7px; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.jcrop-dragbar.ord-e, |
||||
|
.jcrop-dragbar.ord-w { |
||||
|
height: 100%; |
||||
|
width: 7px; |
||||
|
} |
||||
|
.jcrop-dragbar.ord-n { |
||||
|
margin-top: -4px; |
||||
|
} |
||||
|
.jcrop-dragbar.ord-s { |
||||
|
bottom: 0; |
||||
|
margin-bottom: -4px; |
||||
|
} |
||||
|
.jcrop-dragbar.ord-e { |
||||
|
margin-right: -4px; |
||||
|
right: 0; |
||||
|
} |
||||
|
.jcrop-dragbar.ord-w { |
||||
|
margin-left: -4px; |
||||
|
} |
||||
|
/* The "jcrop-light" class/extension */ |
||||
|
.jcrop-light .jcrop-vline, |
||||
|
.jcrop-light .jcrop-hline { |
||||
|
background: #ffffff; |
||||
|
filter: alpha(opacity=70) !important; |
||||
|
opacity: .70!important; |
||||
|
} |
||||
|
.jcrop-light .jcrop-handle { |
||||
|
-moz-border-radius: 3px; |
||||
|
-webkit-border-radius: 3px; |
||||
|
background-color: #000000; |
||||
|
border-color: #ffffff; |
||||
|
border-radius: 3px; |
||||
|
} |
||||
|
/* The "jcrop-dark" class/extension */ |
||||
|
.jcrop-dark .jcrop-vline, |
||||
|
.jcrop-dark .jcrop-hline { |
||||
|
background: #000000; |
||||
|
filter: alpha(opacity=70) !important; |
||||
|
opacity: 0.7 !important; |
||||
|
} |
||||
|
.jcrop-dark .jcrop-handle { |
||||
|
-moz-border-radius: 3px; |
||||
|
-webkit-border-radius: 3px; |
||||
|
background-color: #ffffff; |
||||
|
border-color: #000000; |
||||
|
border-radius: 3px; |
||||
|
} |
||||
|
/* Simple macro to turn off the antlines */ |
||||
|
.solid-line .jcrop-vline, |
||||
|
.solid-line .jcrop-hline { |
||||
|
background: #ffffff; |
||||
|
} |
||||
|
/* Fix for twitter bootstrap et al. */ |
||||
|
.jcrop-holder img, |
||||
|
img.jcrop-preview { |
||||
|
max-width: none; |
||||
|
} |
||||
@ -0,0 +1,29 @@ |
|||||
|
/* jquery.Jcrop.min.css v0.9.12 (build:20130521) */ |
||||
|
.jcrop-holder{-ms-touch-action:none;direction:ltr;text-align:left;} |
||||
|
.jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif);font-size:0;position:absolute;} |
||||
|
.jcrop-vline{height:100%;width:1px!important;} |
||||
|
.jcrop-vline.right{right:0;} |
||||
|
.jcrop-hline{height:1px!important;width:100%;} |
||||
|
.jcrop-hline.bottom{bottom:0;} |
||||
|
.jcrop-tracker{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;height:100%;width:100%;} |
||||
|
.jcrop-handle{background-color:#333;border:1px #EEE solid;font-size:1px;height:7px;width:7px;} |
||||
|
.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;} |
||||
|
.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;} |
||||
|
.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;} |
||||
|
.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;} |
||||
|
.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;} |
||||
|
.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;} |
||||
|
.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;} |
||||
|
.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;} |
||||
|
.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;} |
||||
|
.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;} |
||||
|
.jcrop-dragbar.ord-n{margin-top:-4px;} |
||||
|
.jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;} |
||||
|
.jcrop-dragbar.ord-e{margin-right:-4px;right:0;} |
||||
|
.jcrop-dragbar.ord-w{margin-left:-4px;} |
||||
|
.jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline{background:#FFF;filter:alpha(opacity=70)!important;opacity:.70!important;} |
||||
|
.jcrop-light .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#000;border-color:#FFF;border-radius:3px;} |
||||
|
.jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline{background:#000;filter:alpha(opacity=70)!important;opacity:.7!important;} |
||||
|
.jcrop-dark .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#FFF;border-color:#000;border-radius:3px;} |
||||
|
.solid-line .jcrop-vline,.solid-line .jcrop-hline{background:#FFF;} |
||||
|
.jcrop-holder img,img.jcrop-preview{max-width:none;} |
||||
@ -0,0 +1,202 @@ |
|||||
|
/* eslint-disable */ |
||||
|
var image_cropping = (function ($) { |
||||
|
var jcrop = {}; |
||||
|
function init() { |
||||
|
$('input.image-ratio').each(function() { |
||||
|
var $this = $(this), |
||||
|
// find the image field corresponding to this cropping value
|
||||
|
// by stripping the last part of our id and appending the image field name
|
||||
|
field = $this.attr('name').replace($this.data('my-name'), $this.data('image-field')), |
||||
|
|
||||
|
// there should only be one file field we're referencing but in special cases
|
||||
|
// there can be several. Deal with it gracefully.
|
||||
|
$image_input = $('input.crop-thumb[data-field-name=' + field + ']:first'); |
||||
|
|
||||
|
// skip this image if it's empty and hide the whole field, within admin and by itself
|
||||
|
if (!$image_input.length || $image_input.data('thumbnail-url') === undefined) { |
||||
|
$this.hide().parents('div.form-row:first').hide(); |
||||
|
return; |
||||
|
} |
||||
|
// check if the image field should be hidden
|
||||
|
if ($image_input.data('hide-field')) { |
||||
|
$image_input.hide().parents('div.form-row:first').hide(); |
||||
|
} |
||||
|
|
||||
|
var image_id = $this.attr('id') + '-image', |
||||
|
org_width = $image_input.data('org-width'), |
||||
|
org_height = $image_input.data('org-height'), |
||||
|
min_width = $this.data('min-width'), |
||||
|
min_height = $this.data('min-height'); |
||||
|
|
||||
|
var is_image_portrait = (org_height > org_width); |
||||
|
var is_select_portrait = (min_height > min_width); |
||||
|
|
||||
|
if ($this.data('adapt-rotation') === true) { |
||||
|
if (is_image_portrait != is_select_portrait) { |
||||
|
// cropping height/width need to be switched, picture is in portrait mode
|
||||
|
var x = min_width; |
||||
|
min_width = min_height; |
||||
|
min_height = x; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
var $image = $('<img>', { |
||||
|
'id': image_id, |
||||
|
'src': $image_input.data('thumbnail-url') |
||||
|
}); |
||||
|
|
||||
|
var options = { |
||||
|
minSize: [5, 5], |
||||
|
keySupport: false, |
||||
|
trueSize: [org_width, org_height], |
||||
|
onSelect: update_selection($this), |
||||
|
addClass: ($this.data('size-warning') && ((org_width < min_width) || (org_height < min_height))) ? 'size-warning jcrop-image': 'jcrop-image' |
||||
|
}; |
||||
|
if ($this.data('ratio')) { |
||||
|
options['aspectRatio'] = $this.data('ratio'); |
||||
|
} |
||||
|
if ($this.data('box_max_width')) { |
||||
|
options['boxWidth'] = $this.data('box_max_width'); |
||||
|
} |
||||
|
if ($this.data('box_max_height')) { |
||||
|
options['boxHeight'] = $this.data('box_max_height'); |
||||
|
} |
||||
|
|
||||
|
var cropping_disabled = false; |
||||
|
if($this.val()[0] == "-"){ |
||||
|
cropping_disabled = true; |
||||
|
$this.val($this.val().substr(1)); |
||||
|
} |
||||
|
|
||||
|
// is the image bigger than the minimal cropping values?
|
||||
|
// otherwise lock cropping area on full image
|
||||
|
var initial; |
||||
|
if ($this.val()) { |
||||
|
initial = initial_cropping($this.val()); |
||||
|
} else { |
||||
|
|
||||
|
initial = max_cropping(min_width, min_height, org_width, org_height); |
||||
|
|
||||
|
// set cropfield to initial value
|
||||
|
$this.val(initial.join(',')); |
||||
|
} |
||||
|
|
||||
|
$.extend(options, {setSelect: initial}); |
||||
|
|
||||
|
// hide the input field, show image to crop instead
|
||||
|
$this.hide().after($image); |
||||
|
|
||||
|
$('#' + image_id).Jcrop(options, function(){jcrop[image_id]=this;}); |
||||
|
|
||||
|
if ($this.data('allow-fullsize') === true) { |
||||
|
if(cropping_disabled){ |
||||
|
jcrop[image_id].release(); |
||||
|
$this.val('-'+$this.val()); |
||||
|
} |
||||
|
var label = 'allow-fullsize-'+image_id; |
||||
|
var checked = cropping_disabled ? '' : ' checked="checked"'; |
||||
|
var fullsize = $('<div class="field-box allow-fullsize">' + |
||||
|
'<input type="checkbox" id="'+label+'" name="'+label+'"'+checked+'></div>'); |
||||
|
|
||||
|
if ($this.parent().find('.help').length) { |
||||
|
fullsize.insertBefore($this.parent().find('.help')); |
||||
|
} else { |
||||
|
fullsize.appendTo($this.parent()); |
||||
|
} |
||||
|
|
||||
|
$('#'+label).click(function(){ |
||||
|
if (cropping_disabled === true){ |
||||
|
$this.val($this.val().substr(1)); |
||||
|
jcrop[image_id].setSelect($this.val().split(',')); |
||||
|
cropping_disabled = false; |
||||
|
} else { |
||||
|
$this.val('-'+$this.val()); |
||||
|
jcrop[image_id].release(); |
||||
|
cropping_disabled = true; |
||||
|
} |
||||
|
}); |
||||
|
$this.parent().find('.jcrop-tracker').mousedown(function(){ |
||||
|
if (cropping_disabled){ |
||||
|
$('#'+label).attr('checked','checked'); |
||||
|
cropping_disabled = false; |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
function max_cropping (width, height, image_width, image_height) { |
||||
|
var ratio = width/height; |
||||
|
var offset; |
||||
|
|
||||
|
if (image_width < image_height * ratio) { |
||||
|
// width fits fully, height needs to be cropped
|
||||
|
offset = Math.round((image_height-(image_width/ratio))/2); |
||||
|
return [0, offset, image_width, image_height - offset]; |
||||
|
} |
||||
|
// height fits fully, width needs to be cropped
|
||||
|
offset = Math.round((image_width-(image_height * ratio))/2); |
||||
|
return [offset, 0, image_width - offset, image_height]; |
||||
|
} |
||||
|
|
||||
|
function initial_cropping (val) { |
||||
|
if (val === '') { return; } |
||||
|
var s = val.split(','); |
||||
|
return [ |
||||
|
parseInt(s[0], 10), |
||||
|
parseInt(s[1], 10), |
||||
|
parseInt(s[2], 10), |
||||
|
parseInt(s[3], 10) |
||||
|
]; |
||||
|
} |
||||
|
|
||||
|
function _update_selection (sel, $crop_field) { |
||||
|
if ($crop_field.data('size-warning')) { |
||||
|
crop_indication(sel, $crop_field); |
||||
|
} |
||||
|
$crop_field.val(new Array( |
||||
|
Math.round(sel.x), |
||||
|
Math.round(sel.y), |
||||
|
Math.round(sel.x2), |
||||
|
Math.round(sel.y2) |
||||
|
).join(',')); |
||||
|
} |
||||
|
|
||||
|
function update_selection ($crop_field) { |
||||
|
return function(sel) { _update_selection(sel, $crop_field); }; |
||||
|
} |
||||
|
|
||||
|
function crop_indication (sel, $crop_field) { |
||||
|
// indicate if cropped area gets smaller than the specified minimal cropping
|
||||
|
var $jcrop_holder = $crop_field.siblings('.jcrop-holder'); |
||||
|
var min_width = $crop_field.data("min-width"); |
||||
|
var min_height = $crop_field.data("min-height"); |
||||
|
if ((sel.w < min_width) || (sel.h < min_height)) { |
||||
|
$jcrop_holder.addClass('size-warning'); |
||||
|
} else { |
||||
|
$jcrop_holder.removeClass('size-warning'); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return { |
||||
|
init: init, |
||||
|
jcrop: jcrop |
||||
|
}; |
||||
|
|
||||
|
})(jQuery); |
||||
|
|
||||
|
jQuery(function() { |
||||
|
/*var image_cropping_jquery_url = jQuery('.image-ratio:first').data('jquery-url'); |
||||
|
if (image_cropping_jquery_url == "None") { |
||||
|
// JQUERY_URL is set to `none`. We therefore use the existing version of
|
||||
|
// jQuery and leave it otherwise untouched.
|
||||
|
jQ = jQuery; |
||||
|
} else { |
||||
|
// JQUERY_URL is specified. Image Cropping's jQuery is included in no conflict mode,
|
||||
|
jQ = jQuery.noConflict(true); |
||||
|
} |
||||
|
jQ(function() {image_cropping.init();});*/ |
||||
|
$(function() { |
||||
|
image_cropping.init(); |
||||
|
}); |
||||
|
}); |
||||
@ -0,0 +1,6 @@ |
|||||
|
/* eslint-disable */ |
||||
|
import './css/jquery.Jcrop.min.css'; |
||||
|
import './css/image_cropping.css'; |
||||
|
|
||||
|
import './js/jquery.Jcrop.min'; |
||||
|
import './image_cropping'; |
||||
File diff suppressed because it is too large
@ -0,0 +1,23 @@ |
|||||
|
/* eslint-disable */ |
||||
|
/** |
||||
|
* jquery.Jcrop.min.js v0.9.12 (build:20130202) |
||||
|
* jQuery Image Cropping Plugin - released under MIT License |
||||
|
* Copyright (c) 2008-2013 Tapmodo Interactive LLC |
||||
|
* https://github.com/tapmodo/Jcrop
|
||||
|
*/ |
||||
|
(function(a){a.Jcrop=function(b,c){function i(a){return Math.round(a)+"px"}function j(a){return d.baseClass+"-"+a}function k(){return a.fx.step.hasOwnProperty("backgroundColor")}function l(b){var c=a(b).offset();return[c.left,c.top]}function m(a){return[a.pageX-e[0],a.pageY-e[1]]}function n(b){typeof b!="object"&&(b={}),d=a.extend(d,b),a.each(["onChange","onSelect","onRelease","onDblClick"],function(a,b){typeof d[b]!="function"&&(d[b]=function(){})})}function o(a,b,c){e=l(D),bc.setCursor(a==="move"?a:a+"-resize");if(a==="move")return bc.activateHandlers(q(b),v,c);var d=_.getFixed(),f=r(a),g=_.getCorner(r(f));_.setPressed(_.getCorner(f)),_.setCurrent(g),bc.activateHandlers(p(a,d),v,c)}function p(a,b){return function(c){if(!d.aspectRatio)switch(a){case"e":c[1]=b.y2;break;case"w":c[1]=b.y2;break;case"n":c[0]=b.x2;break;case"s":c[0]=b.x2}else switch(a){case"e":c[1]=b.y+1;break;case"w":c[1]=b.y+1;break;case"n":c[0]=b.x+1;break;case"s":c[0]=b.x+1}_.setCurrent(c),bb.update()}}function q(a){var b=a;return bd.watchKeys |
||||
|
(),function(a){_.moveOffset([a[0]-b[0],a[1]-b[1]]),b=a,bb.update()}}function r(a){switch(a){case"n":return"sw";case"s":return"nw";case"e":return"nw";case"w":return"ne";case"ne":return"sw";case"nw":return"se";case"se":return"nw";case"sw":return"ne"}}function s(a){return function(b){return d.disabled?!1:a==="move"&&!d.allowMove?!1:(e=l(D),W=!0,o(a,m(b)),b.stopPropagation(),b.preventDefault(),!1)}}function t(a,b,c){var d=a.width(),e=a.height();d>b&&b>0&&(d=b,e=b/a.width()*a.height()),e>c&&c>0&&(e=c,d=c/a.height()*a.width()),T=a.width()/d,U=a.height()/e,a.width(d).height(e)}function u(a){return{x:a.x*T,y:a.y*U,x2:a.x2*T,y2:a.y2*U,w:a.w*T,h:a.h*U}}function v(a){var b=_.getFixed();b.w>d.minSelect[0]&&b.h>d.minSelect[1]?(bb.enableHandles(),bb.done()):bb.release(),bc.setCursor(d.allowSelect?"crosshair":"default")}function w(a){if(d.disabled)return!1;if(!d.allowSelect)return!1;W=!0,e=l(D),bb.disableHandles(),bc.setCursor("crosshair");var b=m(a);return _.setPressed(b),bb.update(),bc.activateHandlers(x,v,a.type.substring |
||||
|
(0,5)==="touch"),bd.watchKeys(),a.stopPropagation(),a.preventDefault(),!1}function x(a){_.setCurrent(a),bb.update()}function y(){var b=a("<div></div>").addClass(j("tracker"));return g&&b.css({opacity:0,backgroundColor:"white"}),b}function be(a){G.removeClass().addClass(j("holder")).addClass(a)}function bf(a,b){function t(){window.setTimeout(u,l)}var c=a[0]/T,e=a[1]/U,f=a[2]/T,g=a[3]/U;if(X)return;var h=_.flipCoords(c,e,f,g),i=_.getFixed(),j=[i.x,i.y,i.x2,i.y2],k=j,l=d.animationDelay,m=h[0]-j[0],n=h[1]-j[1],o=h[2]-j[2],p=h[3]-j[3],q=0,r=d.swingSpeed;c=k[0],e=k[1],f=k[2],g=k[3],bb.animMode(!0);var s,u=function(){return function(){q+=(100-q)/r,k[0]=Math.round(c+q/100*m),k[1]=Math.round(e+q/100*n),k[2]=Math.round(f+q/100*o),k[3]=Math.round(g+q/100*p),q>=99.8&&(q=100),q<100?(bh(k),t()):(bb.done(),bb.animMode(!1),typeof b=="function"&&b.call(bs))}}();t()}function bg(a){bh([a[0]/T,a[1]/U,a[2]/T,a[3]/U]),d.onSelect.call(bs,u(_.getFixed())),bb.enableHandles()}function bh(a){_.setPressed([a[0],a[1]]),_.setCurrent([a[2], |
||||
|
a[3]]),bb.update()}function bi(){return u(_.getFixed())}function bj(){return _.getFixed()}function bk(a){n(a),br()}function bl(){d.disabled=!0,bb.disableHandles(),bb.setCursor("default"),bc.setCursor("default")}function bm(){d.disabled=!1,br()}function bn(){bb.done(),bc.activateHandlers(null,null)}function bo(){G.remove(),A.show(),A.css("visibility","visible"),a(b).removeData("Jcrop")}function bp(a,b){bb.release(),bl();var c=new Image;c.onload=function(){var e=c.width,f=c.height,g=d.boxWidth,h=d.boxHeight;D.width(e).height(f),D.attr("src",a),H.attr("src",a),t(D,g,h),E=D.width(),F=D.height(),H.width(E).height(F),M.width(E+L*2).height(F+L*2),G.width(E).height(F),ba.resize(E,F),bm(),typeof b=="function"&&b.call(bs)},c.src=a}function bq(a,b,c){var e=b||d.bgColor;d.bgFade&&k()&&d.fadeTime&&!c?a.animate({backgroundColor:e},{queue:!1,duration:d.fadeTime}):a.css("backgroundColor",e)}function br(a){d.allowResize?a?bb.enableOnly():bb.enableHandles():bb.disableHandles(),bc.setCursor(d.allowSelect?"crosshair":"default"),bb |
||||
|
.setCursor(d.allowMove?"move":"default"),d.hasOwnProperty("trueSize")&&(T=d.trueSize[0]/E,U=d.trueSize[1]/F),d.hasOwnProperty("setSelect")&&(bg(d.setSelect),bb.done(),delete d.setSelect),ba.refresh(),d.bgColor!=N&&(bq(d.shade?ba.getShades():G,d.shade?d.shadeColor||d.bgColor:d.bgColor),N=d.bgColor),O!=d.bgOpacity&&(O=d.bgOpacity,d.shade?ba.refresh():bb.setBgOpacity(O)),P=d.maxSize[0]||0,Q=d.maxSize[1]||0,R=d.minSize[0]||0,S=d.minSize[1]||0,d.hasOwnProperty("outerImage")&&(D.attr("src",d.outerImage),delete d.outerImage),bb.refresh()}var d=a.extend({},a.Jcrop.defaults),e,f=navigator.userAgent.toLowerCase(),g=/msie/.test(f),h=/msie [1-6]\./.test(f);typeof b!="object"&&(b=a(b)[0]),typeof c!="object"&&(c={}),n(c);var z={border:"none",visibility:"visible",margin:0,padding:0,position:"absolute",top:0,left:0},A=a(b),B=!0;if(b.tagName=="IMG"){if(A[0].width!=0&&A[0].height!=0)A.width(A[0].width),A.height(A[0].height);else{var C=new Image;C.src=A[0].src,A.width(C.width),A.height(C.height)}var D=A.clone().removeAttr("id"). |
||||
|
css(z).show();D.width(A.width()),D.height(A.height()),A.after(D).hide()}else D=A.css(z).show(),B=!1,d.shade===null&&(d.shade=!0);t(D,d.boxWidth,d.boxHeight);var E=D.width(),F=D.height(),G=a("<div />").width(E).height(F).addClass(j("holder")).css({position:"relative",backgroundColor:d.bgColor}).insertAfter(A).append(D);d.addClass&&G.addClass(d.addClass);var H=a("<div />"),I=a("<div />").width("100%").height("100%").css({zIndex:310,position:"absolute",overflow:"hidden"}),J=a("<div />").width("100%").height("100%").css("zIndex",320),K=a("<div />").css({position:"absolute",zIndex:600}).dblclick(function(){var a=_.getFixed();d.onDblClick.call(bs,a)}).insertBefore(D).append(I,J);B&&(H=a("<img />").attr("src",D.attr("src")).css(z).width(E).height(F),I.append(H)),h&&K.css({overflowY:"hidden"});var L=d.boundary,M=y().width(E+L*2).height(F+L*2).css({position:"absolute",top:i(-L),left:i(-L),zIndex:290}).mousedown(w),N=d.bgColor,O=d.bgOpacity,P,Q,R,S,T,U,V=!0,W,X,Y;e=l(D);var Z=function(){function a(){var a={},b=["touchstart" |
||||
|
,"touchmove","touchend"],c=document.createElement("div"),d;try{for(d=0;d<b.length;d++){var e=b[d];e="on"+e;var f=e in c;f||(c.setAttribute(e,"return;"),f=typeof c[e]=="function"),a[b[d]]=f}return a.touchstart&&a.touchend&&a.touchmove}catch(g){return!1}}function b(){return d.touchSupport===!0||d.touchSupport===!1?d.touchSupport:a()}return{createDragger:function(a){return function(b){return d.disabled?!1:a==="move"&&!d.allowMove?!1:(e=l(D),W=!0,o(a,m(Z.cfilter(b)),!0),b.stopPropagation(),b.preventDefault(),!1)}},newSelection:function(a){return w(Z.cfilter(a))},cfilter:function(a){return a.pageX=a.originalEvent.changedTouches[0].pageX,a.pageY=a.originalEvent.changedTouches[0].pageY,a},isSupported:a,support:b()}}(),_=function(){function h(d){d=n(d),c=a=d[0],e=b=d[1]}function i(a){a=n(a),f=a[0]-c,g=a[1]-e,c=a[0],e=a[1]}function j(){return[f,g]}function k(d){var f=d[0],g=d[1];0>a+f&&(f-=f+a),0>b+g&&(g-=g+b),F<e+g&&(g+=F-(e+g)),E<c+f&&(f+=E-(c+f)),a+=f,c+=f,b+=g,e+=g}function l(a){var b=m();switch(a){case"ne":return[ |
||||
|
b.x2,b.y];case"nw":return[b.x,b.y];case"se":return[b.x2,b.y2];case"sw":return[b.x,b.y2]}}function m(){if(!d.aspectRatio)return p();var f=d.aspectRatio,g=d.minSize[0]/T,h=d.maxSize[0]/T,i=d.maxSize[1]/U,j=c-a,k=e-b,l=Math.abs(j),m=Math.abs(k),n=l/m,r,s,t,u;return h===0&&(h=E*10),i===0&&(i=F*10),n<f?(s=e,t=m*f,r=j<0?a-t:t+a,r<0?(r=0,u=Math.abs((r-a)/f),s=k<0?b-u:u+b):r>E&&(r=E,u=Math.abs((r-a)/f),s=k<0?b-u:u+b)):(r=c,u=l/f,s=k<0?b-u:b+u,s<0?(s=0,t=Math.abs((s-b)*f),r=j<0?a-t:t+a):s>F&&(s=F,t=Math.abs(s-b)*f,r=j<0?a-t:t+a)),r>a?(r-a<g?r=a+g:r-a>h&&(r=a+h),s>b?s=b+(r-a)/f:s=b-(r-a)/f):r<a&&(a-r<g?r=a-g:a-r>h&&(r=a-h),s>b?s=b+(a-r)/f:s=b-(a-r)/f),r<0?(a-=r,r=0):r>E&&(a-=r-E,r=E),s<0?(b-=s,s=0):s>F&&(b-=s-F,s=F),q(o(a,b,r,s))}function n(a){return a[0]<0&&(a[0]=0),a[1]<0&&(a[1]=0),a[0]>E&&(a[0]=E),a[1]>F&&(a[1]=F),[Math.round(a[0]),Math.round(a[1])]}function o(a,b,c,d){var e=a,f=c,g=b,h=d;return c<a&&(e=c,f=a),d<b&&(g=d,h=b),[e,g,f,h]}function p(){var d=c-a,f=e-b,g;return P&&Math.abs(d)>P&&(c=d>0?a+P:a-P),Q&&Math.abs |
||||
|
(f)>Q&&(e=f>0?b+Q:b-Q),S/U&&Math.abs(f)<S/U&&(e=f>0?b+S/U:b-S/U),R/T&&Math.abs(d)<R/T&&(c=d>0?a+R/T:a-R/T),a<0&&(c-=a,a-=a),b<0&&(e-=b,b-=b),c<0&&(a-=c,c-=c),e<0&&(b-=e,e-=e),c>E&&(g=c-E,a-=g,c-=g),e>F&&(g=e-F,b-=g,e-=g),a>E&&(g=a-F,e-=g,b-=g),b>F&&(g=b-F,e-=g,b-=g),q(o(a,b,c,e))}function q(a){return{x:a[0],y:a[1],x2:a[2],y2:a[3],w:a[2]-a[0],h:a[3]-a[1]}}var a=0,b=0,c=0,e=0,f,g;return{flipCoords:o,setPressed:h,setCurrent:i,getOffset:j,moveOffset:k,getCorner:l,getFixed:m}}(),ba=function(){function f(a,b){e.left.css({height:i(b)}),e.right.css({height:i(b)})}function g(){return h(_.getFixed())}function h(a){e.top.css({left:i(a.x),width:i(a.w),height:i(a.y)}),e.bottom.css({top:i(a.y2),left:i(a.x),width:i(a.w),height:i(F-a.y2)}),e.right.css({left:i(a.x2),width:i(E-a.x2)}),e.left.css({width:i(a.x)})}function j(){return a("<div />").css({position:"absolute",backgroundColor:d.shadeColor||d.bgColor}).appendTo(c)}function k(){b||(b=!0,c.insertBefore(D),g(),bb.setBgOpacity(1,0,1),H.hide(),l(d.shadeColor||d.bgColor,1),bb. |
||||
|
isAwake()?n(d.bgOpacity,1):n(1,1))}function l(a,b){bq(p(),a,b)}function m(){b&&(c.remove(),H.show(),b=!1,bb.isAwake()?bb.setBgOpacity(d.bgOpacity,1,1):(bb.setBgOpacity(1,1,1),bb.disableHandles()),bq(G,0,1))}function n(a,e){b&&(d.bgFade&&!e?c.animate({opacity:1-a},{queue:!1,duration:d.fadeTime}):c.css({opacity:1-a}))}function o(){d.shade?k():m(),bb.isAwake()&&n(d.bgOpacity)}function p(){return c.children()}var b=!1,c=a("<div />").css({position:"absolute",zIndex:240,opacity:0}),e={top:j(),left:j().height(F),right:j().height(F),bottom:j()};return{update:g,updateRaw:h,getShades:p,setBgColor:l,enable:k,disable:m,resize:f,refresh:o,opacity:n}}(),bb=function(){function k(b){var c=a("<div />").css({position:"absolute",opacity:d.borderOpacity}).addClass(j(b));return I.append(c),c}function l(b,c){var d=a("<div />").mousedown(s(b)).css({cursor:b+"-resize",position:"absolute",zIndex:c}).addClass("ord-"+b);return Z.support&&d.bind("touchstart.jcrop",Z.createDragger(b)),J.append(d),d}function m(a){var b=d.handleSize,e=l(a,c++ |
||||
|
).css({opacity:d.handleOpacity}).addClass(j("handle"));return b&&e.width(b).height(b),e}function n(a){return l(a,c++).addClass("jcrop-dragbar")}function o(a){var b;for(b=0;b<a.length;b++)g[a[b]]=n(a[b])}function p(a){var b,c;for(c=0;c<a.length;c++){switch(a[c]){case"n":b="hline";break;case"s":b="hline bottom";break;case"e":b="vline right";break;case"w":b="vline"}e[a[c]]=k(b)}}function q(a){var b;for(b=0;b<a.length;b++)f[a[b]]=m(a[b])}function r(a,b){d.shade||H.css({top:i(-b),left:i(-a)}),K.css({top:i(b),left:i(a)})}function t(a,b){K.width(Math.round(a)).height(Math.round(b))}function v(){var a=_.getFixed();_.setPressed([a.x,a.y]),_.setCurrent([a.x2,a.y2]),w()}function w(a){if(b)return x(a)}function x(a){var c=_.getFixed();t(c.w,c.h),r(c.x,c.y),d.shade&&ba.updateRaw(c),b||A(),a?d.onSelect.call(bs,u(c)):d.onChange.call(bs,u(c))}function z(a,c,e){if(!b&&!c)return;d.bgFade&&!e?D.animate({opacity:a},{queue:!1,duration:d.fadeTime}):D.css("opacity",a)}function A(){K.show(),d.shade?ba.opacity(O):z(O,!0),b=!0}function B |
||||
|
(){F(),K.hide(),d.shade?ba.opacity(1):z(1),b=!1,d.onRelease.call(bs)}function C(){h&&J.show()}function E(){h=!0;if(d.allowResize)return J.show(),!0}function F(){h=!1,J.hide()}function G(a){a?(X=!0,F()):(X=!1,E())}function L(){G(!1),v()}var b,c=370,e={},f={},g={},h=!1;d.dragEdges&&a.isArray(d.createDragbars)&&o(d.createDragbars),a.isArray(d.createHandles)&&q(d.createHandles),d.drawBorders&&a.isArray(d.createBorders)&&p(d.createBorders),a(document).bind("touchstart.jcrop-ios",function(b){a(b.currentTarget).hasClass("jcrop-tracker")&&b.stopPropagation()});var M=y().mousedown(s("move")).css({cursor:"move",position:"absolute",zIndex:360});return Z.support&&M.bind("touchstart.jcrop",Z.createDragger("move")),I.append(M),F(),{updateVisible:w,update:x,release:B,refresh:v,isAwake:function(){return b},setCursor:function(a){M.css("cursor",a)},enableHandles:E,enableOnly:function(){h=!0},showHandles:C,disableHandles:F,animMode:G,setBgOpacity:z,done:L}}(),bc=function(){function f(b){M.css({zIndex:450}),b?a(document).bind("touchmove.jcrop" |
||||
|
,k).bind("touchend.jcrop",l):e&&a(document).bind("mousemove.jcrop",h).bind("mouseup.jcrop",i)}function g(){M.css({zIndex:290}),a(document).unbind(".jcrop")}function h(a){return b(m(a)),!1}function i(a){return a.preventDefault(),a.stopPropagation(),W&&(W=!1,c(m(a)),bb.isAwake()&&d.onSelect.call(bs,u(_.getFixed())),g(),b=function(){},c=function(){}),!1}function j(a,d,e){return W=!0,b=a,c=d,f(e),!1}function k(a){return b(m(Z.cfilter(a))),!1}function l(a){return i(Z.cfilter(a))}function n(a){M.css("cursor",a)}var b=function(){},c=function(){},e=d.trackDocument;return e||M.mousemove(h).mouseup(i).mouseout(i),D.before(M),{activateHandlers:j,setCursor:n}}(),bd=function(){function e(){d.keySupport&&(b.show(),b.focus())}function f(a){b.hide()}function g(a,b,c){d.allowMove&&(_.moveOffset([b,c]),bb.updateVisible(!0)),a.preventDefault(),a.stopPropagation()}function i(a){if(a.ctrlKey||a.metaKey)return!0;Y=a.shiftKey?!0:!1;var b=Y?10:1;switch(a.keyCode){case 37:g(a,-b,0);break;case 39:g(a,b,0);break;case 38:g(a,0,-b);break; |
||||
|
case 40:g(a,0,b);break;case 27:d.allowSelect&&bb.release();break;case 9:return!0}return!1}var b=a('<input type="radio" />').css({position:"fixed",left:"-120px",width:"12px"}).addClass("jcrop-keymgr"),c=a("<div />").css({position:"absolute",overflow:"hidden"}).append(b);return d.keySupport&&(b.keydown(i).blur(f),h||!d.fixedSupport?(b.css({position:"absolute",left:"-20px"}),c.append(b).insertBefore(D)):b.insertBefore(D)),{watchKeys:e}}();Z.support&&M.bind("touchstart.jcrop",Z.newSelection),J.hide(),br(!0);var bs={setImage:bp,animateTo:bf,setSelect:bg,setOptions:bk,tellSelect:bi,tellScaled:bj,setClass:be,disable:bl,enable:bm,cancel:bn,release:bb.release,destroy:bo,focus:bd.watchKeys,getBounds:function(){return[E*T,F*U]},getWidgetSize:function(){return[E,F]},getScaleFactor:function(){return[T,U]},getOptions:function(){return d},ui:{holder:G,selection:K}};return g&&G.bind("selectstart",function(){return!1}),A.data("Jcrop",bs),bs},a.fn.Jcrop=function(b,c){var d;return this.each(function(){if(a(this).data("Jcrop")){if( |
||||
|
b==="api")return a(this).data("Jcrop");a(this).data("Jcrop").setOptions(b)}else this.tagName=="IMG"?a.Jcrop.Loader(this,function(){a(this).css({display:"block",visibility:"hidden"}),d=a.Jcrop(this,b),a.isFunction(c)&&c.call(d)}):(a(this).css({display:"block",visibility:"hidden"}),d=a.Jcrop(this,b),a.isFunction(c)&&c.call(d))}),this},a.Jcrop.Loader=function(b,c,d){function g(){f.complete?(e.unbind(".jcloader"),a.isFunction(c)&&c.call(f)):window.setTimeout(g,50)}var e=a(b),f=e[0];e.bind("load.jcloader",g).bind("error.jcloader",function(b){e.unbind(".jcloader"),a.isFunction(d)&&d.call(f)}),f.complete&&a.isFunction(c)&&(e.unbind(".jcloader"),c.call(f))},a.Jcrop.defaults={allowSelect:!0,allowMove:!0,allowResize:!0,trackDocument:!0,baseClass:"jcrop",addClass:null,bgColor:"black",bgOpacity:.6,bgFade:!1,borderOpacity:.4,handleOpacity:.5,handleSize:null,aspectRatio:0,keySupport:!0,createHandles:["n","s","e","w","nw","ne","se","sw"],createDragbars:["n","s","e","w"],createBorders:["n","s","e","w"],drawBorders:!0,dragEdges |
||||
|
:!0,fixedSupport:!0,touchSupport:null,shade:null,boxWidth:0,boxHeight:0,boundary:2,fadeTime:400,animationDelay:20,swingSpeed:3,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){},onDblClick:function(){},onRelease:function(){}}})(jQuery); |
||||
@ -0,0 +1,661 @@ |
|||||
|
/*! |
||||
|
* jQuery Color Animations v2.0pre |
||||
|
* http://jquery.org/
|
||||
|
* |
||||
|
* Copyright 2011 John Resig |
||||
|
* Dual licensed under the MIT or GPL Version 2 licenses. |
||||
|
* http://jquery.org/license
|
||||
|
*/ |
||||
|
|
||||
|
(function( jQuery, undefined ){ |
||||
|
var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color outlineColor".split(" "), |
||||
|
|
||||
|
// plusequals test for += 100 -= 100
|
||||
|
rplusequals = /^([\-+])=\s*(\d+\.?\d*)/, |
||||
|
// a set of RE's that can match strings and generate color tuples.
|
||||
|
stringParsers = [{ |
||||
|
re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, |
||||
|
parse: function( execResult ) { |
||||
|
return [ |
||||
|
execResult[ 1 ], |
||||
|
execResult[ 2 ], |
||||
|
execResult[ 3 ], |
||||
|
execResult[ 4 ] |
||||
|
]; |
||||
|
} |
||||
|
}, { |
||||
|
re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, |
||||
|
parse: function( execResult ) { |
||||
|
return [ |
||||
|
2.55 * execResult[1], |
||||
|
2.55 * execResult[2], |
||||
|
2.55 * execResult[3], |
||||
|
execResult[ 4 ] |
||||
|
]; |
||||
|
} |
||||
|
}, { |
||||
|
re: /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/, |
||||
|
parse: function( execResult ) { |
||||
|
return [ |
||||
|
parseInt( execResult[ 1 ], 16 ), |
||||
|
parseInt( execResult[ 2 ], 16 ), |
||||
|
parseInt( execResult[ 3 ], 16 ) |
||||
|
]; |
||||
|
} |
||||
|
}, { |
||||
|
re: /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/, |
||||
|
parse: function( execResult ) { |
||||
|
return [ |
||||
|
parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ), |
||||
|
parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ), |
||||
|
parseInt( execResult[ 3 ] + execResult[ 3 ], 16 ) |
||||
|
]; |
||||
|
} |
||||
|
}, { |
||||
|
re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/, |
||||
|
space: "hsla", |
||||
|
parse: function( execResult ) { |
||||
|
return [ |
||||
|
execResult[1], |
||||
|
execResult[2] / 100, |
||||
|
execResult[3] / 100, |
||||
|
execResult[4] |
||||
|
]; |
||||
|
} |
||||
|
}], |
||||
|
|
||||
|
// jQuery.Color( )
|
||||
|
color = jQuery.Color = function( color, green, blue, alpha ) { |
||||
|
return new jQuery.Color.fn.parse( color, green, blue, alpha ); |
||||
|
}, |
||||
|
spaces = { |
||||
|
rgba: { |
||||
|
cache: "_rgba", |
||||
|
props: { |
||||
|
red: { |
||||
|
idx: 0, |
||||
|
type: "byte", |
||||
|
empty: true |
||||
|
}, |
||||
|
green: { |
||||
|
idx: 1, |
||||
|
type: "byte", |
||||
|
empty: true |
||||
|
}, |
||||
|
blue: { |
||||
|
idx: 2, |
||||
|
type: "byte", |
||||
|
empty: true |
||||
|
}, |
||||
|
alpha: { |
||||
|
idx: 3, |
||||
|
type: "percent", |
||||
|
def: 1 |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
hsla: { |
||||
|
cache: "_hsla", |
||||
|
props: { |
||||
|
hue: { |
||||
|
idx: 0, |
||||
|
type: "degrees", |
||||
|
empty: true |
||||
|
}, |
||||
|
saturation: { |
||||
|
idx: 1, |
||||
|
type: "percent", |
||||
|
empty: true |
||||
|
}, |
||||
|
lightness: { |
||||
|
idx: 2, |
||||
|
type: "percent", |
||||
|
empty: true |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
propTypes = { |
||||
|
"byte": { |
||||
|
floor: true, |
||||
|
min: 0, |
||||
|
max: 255 |
||||
|
}, |
||||
|
"percent": { |
||||
|
min: 0, |
||||
|
max: 1 |
||||
|
}, |
||||
|
"degrees": { |
||||
|
mod: 360, |
||||
|
floor: true |
||||
|
} |
||||
|
}, |
||||
|
rgbaspace = spaces.rgba.props, |
||||
|
support = color.support = {}, |
||||
|
|
||||
|
// colors = jQuery.Color.names
|
||||
|
colors, |
||||
|
|
||||
|
// local aliases of functions called often
|
||||
|
each = jQuery.each; |
||||
|
|
||||
|
spaces.hsla.props.alpha = rgbaspace.alpha; |
||||
|
|
||||
|
function clamp( value, prop, alwaysAllowEmpty ) { |
||||
|
var type = propTypes[ prop.type ] || {}, |
||||
|
allowEmpty = prop.empty || alwaysAllowEmpty; |
||||
|
|
||||
|
if ( allowEmpty && value == null ) { |
||||
|
return null; |
||||
|
} |
||||
|
if ( prop.def && value == null ) { |
||||
|
return prop.def; |
||||
|
} |
||||
|
if ( type.floor ) { |
||||
|
value = ~~value; |
||||
|
} else { |
||||
|
value = parseFloat( value ); |
||||
|
} |
||||
|
if ( value == null || isNaN( value ) ) { |
||||
|
return prop.def; |
||||
|
} |
||||
|
if ( type.mod ) { |
||||
|
value = value % type.mod; |
||||
|
// -10 -> 350
|
||||
|
return value < 0 ? type.mod + value : value; |
||||
|
} |
||||
|
|
||||
|
// for now all property types without mod have min and max
|
||||
|
return type.min > value ? type.min : type.max < value ? type.max : value; |
||||
|
} |
||||
|
|
||||
|
function stringParse( string ) { |
||||
|
var inst = color(), |
||||
|
rgba = inst._rgba = []; |
||||
|
|
||||
|
string = string.toLowerCase(); |
||||
|
|
||||
|
each( stringParsers, function( i, parser ) { |
||||
|
var match = parser.re.exec( string ), |
||||
|
values = match && parser.parse( match ), |
||||
|
parsed, |
||||
|
spaceName = parser.space || "rgba", |
||||
|
cache = spaces[ spaceName ].cache; |
||||
|
|
||||
|
|
||||
|
if ( values ) { |
||||
|
parsed = inst[ spaceName ]( values ); |
||||
|
|
||||
|
// if this was an rgba parse the assignment might happen twice
|
||||
|
// oh well....
|
||||
|
inst[ cache ] = parsed[ cache ]; |
||||
|
rgba = inst._rgba = parsed._rgba; |
||||
|
|
||||
|
// exit each( stringParsers ) here because we matched
|
||||
|
return false; |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
// Found a stringParser that handled it
|
||||
|
if ( rgba.length !== 0 ) { |
||||
|
|
||||
|
// if this came from a parsed string, force "transparent" when alpha is 0
|
||||
|
// chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
|
||||
|
if ( Math.max.apply( Math, rgba ) === 0 ) { |
||||
|
jQuery.extend( rgba, colors.transparent ); |
||||
|
} |
||||
|
return inst; |
||||
|
} |
||||
|
|
||||
|
// named colors / default - filter back through parse function
|
||||
|
if ( string = colors[ string ] ) { |
||||
|
return string; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
color.fn = color.prototype = { |
||||
|
constructor: color, |
||||
|
parse: function( red, green, blue, alpha ) { |
||||
|
if ( red === undefined ) { |
||||
|
this._rgba = [ null, null, null, null ]; |
||||
|
return this; |
||||
|
} |
||||
|
if ( red instanceof jQuery || red.nodeType ) { |
||||
|
red = red instanceof jQuery ? red.css( green ) : jQuery( red ).css( green ); |
||||
|
green = undefined; |
||||
|
} |
||||
|
|
||||
|
var inst = this, |
||||
|
type = jQuery.type( red ), |
||||
|
rgba = this._rgba = [], |
||||
|
source; |
||||
|
|
||||
|
// more than 1 argument specified - assume ( red, green, blue, alpha )
|
||||
|
if ( green !== undefined ) { |
||||
|
red = [ red, green, blue, alpha ]; |
||||
|
type = "array"; |
||||
|
} |
||||
|
|
||||
|
if ( type === "string" ) { |
||||
|
return this.parse( stringParse( red ) || colors._default ); |
||||
|
} |
||||
|
|
||||
|
if ( type === "array" ) { |
||||
|
each( rgbaspace, function( key, prop ) { |
||||
|
rgba[ prop.idx ] = clamp( red[ prop.idx ], prop ); |
||||
|
}); |
||||
|
return this; |
||||
|
} |
||||
|
|
||||
|
if ( type === "object" ) { |
||||
|
if ( red instanceof color ) { |
||||
|
each( spaces, function( spaceName, space ) { |
||||
|
if ( red[ space.cache ] ) { |
||||
|
inst[ space.cache ] = red[ space.cache ].slice(); |
||||
|
} |
||||
|
}); |
||||
|
} else { |
||||
|
each( spaces, function( spaceName, space ) { |
||||
|
each( space.props, function( key, prop ) { |
||||
|
var cache = space.cache; |
||||
|
|
||||
|
// if the cache doesn't exist, and we know how to convert
|
||||
|
if ( !inst[ cache ] && space.to ) { |
||||
|
|
||||
|
// if the value was null, we don't need to copy it
|
||||
|
// if the key was alpha, we don't need to copy it either
|
||||
|
if ( red[ key ] == null || key === "alpha") { |
||||
|
return; |
||||
|
} |
||||
|
inst[ cache ] = space.to( inst._rgba ); |
||||
|
} |
||||
|
|
||||
|
// this is the only case where we allow nulls for ALL properties.
|
||||
|
// call clamp with alwaysAllowEmpty
|
||||
|
inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true ); |
||||
|
}); |
||||
|
}); |
||||
|
} |
||||
|
return this; |
||||
|
} |
||||
|
}, |
||||
|
is: function( compare ) { |
||||
|
var is = color( compare ), |
||||
|
same = true, |
||||
|
myself = this; |
||||
|
|
||||
|
each( spaces, function( _, space ) { |
||||
|
var isCache = is[ space.cache ], |
||||
|
localCache; |
||||
|
if (isCache) { |
||||
|
localCache = myself[ space.cache ] || space.to && space.to( myself._rgba ) || []; |
||||
|
each( space.props, function( _, prop ) { |
||||
|
if ( isCache[ prop.idx ] != null ) { |
||||
|
same = ( isCache[ prop.idx ] === localCache[ prop.idx ] ); |
||||
|
return same; |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
return same; |
||||
|
}); |
||||
|
return same; |
||||
|
}, |
||||
|
_space: function() { |
||||
|
var used = [], |
||||
|
inst = this; |
||||
|
each( spaces, function( spaceName, space ) { |
||||
|
if ( inst[ space.cache ] ) { |
||||
|
used.push( spaceName ); |
||||
|
} |
||||
|
}); |
||||
|
return used.pop(); |
||||
|
}, |
||||
|
transition: function( other, distance ) { |
||||
|
var end = color( other ), |
||||
|
spaceName = end._space(), |
||||
|
space = spaces[ spaceName ], |
||||
|
start = this[ space.cache ] || space.to( this._rgba ), |
||||
|
result = start.slice(); |
||||
|
|
||||
|
end = end[ space.cache ]; |
||||
|
each( space.props, function( key, prop ) { |
||||
|
var index = prop.idx, |
||||
|
startValue = start[ index ], |
||||
|
endValue = end[ index ], |
||||
|
type = propTypes[ prop.type ] || {}; |
||||
|
|
||||
|
// if null, don't override start value
|
||||
|
if ( endValue === null ) { |
||||
|
return; |
||||
|
} |
||||
|
// if null - use end
|
||||
|
if ( startValue === null ) { |
||||
|
result[ index ] = endValue; |
||||
|
} else { |
||||
|
if ( type.mod ) { |
||||
|
if ( endValue - startValue > type.mod / 2 ) { |
||||
|
startValue += type.mod; |
||||
|
} else if ( startValue - endValue > type.mod / 2 ) { |
||||
|
startValue -= type.mod; |
||||
|
} |
||||
|
} |
||||
|
result[ prop.idx ] = clamp( ( endValue - startValue ) * distance + startValue, prop ); |
||||
|
} |
||||
|
}); |
||||
|
return this[ spaceName ]( result ); |
||||
|
}, |
||||
|
blend: function( opaque ) { |
||||
|
// if we are already opaque - return ourself
|
||||
|
if ( this._rgba[ 3 ] === 1 ) { |
||||
|
return this; |
||||
|
} |
||||
|
|
||||
|
var rgb = this._rgba.slice(), |
||||
|
a = rgb.pop(), |
||||
|
blend = color( opaque )._rgba; |
||||
|
|
||||
|
return color( jQuery.map( rgb, function( v, i ) { |
||||
|
return ( 1 - a ) * blend[ i ] + a * v; |
||||
|
})); |
||||
|
}, |
||||
|
toRgbaString: function() { |
||||
|
var prefix = "rgba(", |
||||
|
rgba = jQuery.map( this._rgba, function( v, i ) { |
||||
|
return v == null ? ( i > 2 ? 1 : 0 ) : v; |
||||
|
}); |
||||
|
|
||||
|
if ( rgba[ 3 ] === 1 ) { |
||||
|
rgba.pop(); |
||||
|
prefix = "rgb("; |
||||
|
} |
||||
|
|
||||
|
return prefix + rgba.join(",") + ")"; |
||||
|
}, |
||||
|
toHslaString: function() { |
||||
|
var prefix = "hsla(", |
||||
|
hsla = jQuery.map( this.hsla(), function( v, i ) { |
||||
|
if ( v == null ) { |
||||
|
v = i > 2 ? 1 : 0; |
||||
|
} |
||||
|
|
||||
|
// catch 1 and 2
|
||||
|
if ( i && i < 3 ) { |
||||
|
v = Math.round( v * 100 ) + "%"; |
||||
|
} |
||||
|
return v; |
||||
|
}); |
||||
|
|
||||
|
if ( hsla[ 3 ] === 1 ) { |
||||
|
hsla.pop(); |
||||
|
prefix = "hsl("; |
||||
|
} |
||||
|
return prefix + hsla.join(",") + ")"; |
||||
|
}, |
||||
|
toHexString: function( includeAlpha ) { |
||||
|
var rgba = this._rgba.slice(), |
||||
|
alpha = rgba.pop(); |
||||
|
|
||||
|
if ( includeAlpha ) { |
||||
|
rgba.push( ~~( alpha * 255 ) ); |
||||
|
} |
||||
|
|
||||
|
return "#" + jQuery.map( rgba, function( v, i ) { |
||||
|
|
||||
|
// default to 0 when nulls exist
|
||||
|
v = ( v || 0 ).toString( 16 ); |
||||
|
return v.length === 1 ? "0" + v : v; |
||||
|
}).join(""); |
||||
|
}, |
||||
|
toString: function() { |
||||
|
return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString(); |
||||
|
} |
||||
|
}; |
||||
|
color.fn.parse.prototype = color.fn; |
||||
|
|
||||
|
// hsla conversions adapted from:
|
||||
|
// http://www.google.com/codesearch/p#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/inspector/front-end/Color.js&d=7&l=193
|
||||
|
|
||||
|
function hue2rgb( p, q, h ) { |
||||
|
h = ( h + 1 ) % 1; |
||||
|
if ( h * 6 < 1 ) { |
||||
|
return p + (q - p) * 6 * h; |
||||
|
} |
||||
|
if ( h * 2 < 1) { |
||||
|
return q; |
||||
|
} |
||||
|
if ( h * 3 < 2 ) { |
||||
|
return p + (q - p) * ((2/3) - h) * 6; |
||||
|
} |
||||
|
return p; |
||||
|
} |
||||
|
|
||||
|
spaces.hsla.to = function ( rgba ) { |
||||
|
if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) { |
||||
|
return [ null, null, null, rgba[ 3 ] ]; |
||||
|
} |
||||
|
var r = rgba[ 0 ] / 255, |
||||
|
g = rgba[ 1 ] / 255, |
||||
|
b = rgba[ 2 ] / 255, |
||||
|
a = rgba[ 3 ], |
||||
|
max = Math.max( r, g, b ), |
||||
|
min = Math.min( r, g, b ), |
||||
|
diff = max - min, |
||||
|
add = max + min, |
||||
|
l = add * 0.5, |
||||
|
h, s; |
||||
|
|
||||
|
if ( min === max ) { |
||||
|
h = 0; |
||||
|
} else if ( r === max ) { |
||||
|
h = ( 60 * ( g - b ) / diff ) + 360; |
||||
|
} else if ( g === max ) { |
||||
|
h = ( 60 * ( b - r ) / diff ) + 120; |
||||
|
} else { |
||||
|
h = ( 60 * ( r - g ) / diff ) + 240; |
||||
|
} |
||||
|
|
||||
|
if ( l === 0 || l === 1 ) { |
||||
|
s = l; |
||||
|
} else if ( l <= 0.5 ) { |
||||
|
s = diff / add; |
||||
|
} else { |
||||
|
s = diff / ( 2 - add ); |
||||
|
} |
||||
|
return [ Math.round(h) % 360, s, l, a == null ? 1 : a ]; |
||||
|
}; |
||||
|
|
||||
|
spaces.hsla.from = function ( hsla ) { |
||||
|
if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) { |
||||
|
return [ null, null, null, hsla[ 3 ] ]; |
||||
|
} |
||||
|
var h = hsla[ 0 ] / 360, |
||||
|
s = hsla[ 1 ], |
||||
|
l = hsla[ 2 ], |
||||
|
a = hsla[ 3 ], |
||||
|
q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s, |
||||
|
p = 2 * l - q, |
||||
|
r, g, b; |
||||
|
|
||||
|
return [ |
||||
|
Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ), |
||||
|
Math.round( hue2rgb( p, q, h ) * 255 ), |
||||
|
Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ), |
||||
|
a |
||||
|
]; |
||||
|
}; |
||||
|
|
||||
|
|
||||
|
each( spaces, function( spaceName, space ) { |
||||
|
var props = space.props, |
||||
|
cache = space.cache, |
||||
|
to = space.to, |
||||
|
from = space.from; |
||||
|
|
||||
|
// makes rgba() and hsla()
|
||||
|
color.fn[ spaceName ] = function( value ) { |
||||
|
|
||||
|
// generate a cache for this space if it doesn't exist
|
||||
|
if ( to && !this[ cache ] ) { |
||||
|
this[ cache ] = to( this._rgba ); |
||||
|
} |
||||
|
if ( value === undefined ) { |
||||
|
return this[ cache ].slice(); |
||||
|
} |
||||
|
|
||||
|
var type = jQuery.type( value ), |
||||
|
arr = ( type === "array" || type === "object" ) ? value : arguments, |
||||
|
local = this[ cache ].slice(), |
||||
|
ret; |
||||
|
|
||||
|
each( props, function( key, prop ) { |
||||
|
var val = arr[ type === "object" ? key : prop.idx ]; |
||||
|
if ( val == null ) { |
||||
|
val = local[ prop.idx ]; |
||||
|
} |
||||
|
local[ prop.idx ] = clamp( val, prop ); |
||||
|
}); |
||||
|
|
||||
|
if ( from ) { |
||||
|
ret = color( from( local ) ); |
||||
|
ret[ cache ] = local; |
||||
|
return ret; |
||||
|
} else { |
||||
|
return color( local ); |
||||
|
} |
||||
|
}; |
||||
|
|
||||
|
// makes red() green() blue() alpha() hue() saturation() lightness()
|
||||
|
each( props, function( key, prop ) { |
||||
|
// alpha is included in more than one space
|
||||
|
if ( color.fn[ key ] ) { |
||||
|
return; |
||||
|
} |
||||
|
color.fn[ key ] = function( value ) { |
||||
|
var vtype = jQuery.type( value ), |
||||
|
fn = ( key === 'alpha' ? ( this._hsla ? 'hsla' : 'rgba' ) : spaceName ), |
||||
|
local = this[ fn ](), |
||||
|
cur = local[ prop.idx ], |
||||
|
match; |
||||
|
|
||||
|
if ( vtype === "undefined" ) { |
||||
|
return cur; |
||||
|
} |
||||
|
|
||||
|
if ( vtype === "function" ) { |
||||
|
value = value.call( this, cur ); |
||||
|
vtype = jQuery.type( value ); |
||||
|
} |
||||
|
if ( value == null && prop.empty ) { |
||||
|
return this; |
||||
|
} |
||||
|
if ( vtype === "string" ) { |
||||
|
match = rplusequals.exec( value ); |
||||
|
if ( match ) { |
||||
|
value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 ); |
||||
|
} |
||||
|
} |
||||
|
local[ prop.idx ] = value; |
||||
|
return this[ fn ]( local ); |
||||
|
}; |
||||
|
}); |
||||
|
}); |
||||
|
|
||||
|
// add .fx.step functions
|
||||
|
each( stepHooks, function( i, hook ) { |
||||
|
jQuery.cssHooks[ hook ] = { |
||||
|
set: function( elem, value ) { |
||||
|
var parsed, backgroundColor, curElem; |
||||
|
|
||||
|
if ( jQuery.type( value ) !== 'string' || ( parsed = stringParse( value ) ) ) |
||||
|
{ |
||||
|
value = color( parsed || value ); |
||||
|
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) { |
||||
|
curElem = hook === "backgroundColor" ? elem.parentNode : elem; |
||||
|
do { |
||||
|
backgroundColor = jQuery.curCSS( curElem, "backgroundColor" ); |
||||
|
} while ( |
||||
|
( backgroundColor === "" || backgroundColor === "transparent" ) && |
||||
|
( curElem = curElem.parentNode ) && |
||||
|
curElem.style |
||||
|
); |
||||
|
|
||||
|
value = value.blend( backgroundColor && backgroundColor !== "transparent" ? |
||||
|
backgroundColor : |
||||
|
"_default" ); |
||||
|
} |
||||
|
|
||||
|
value = value.toRgbaString(); |
||||
|
} |
||||
|
elem.style[ hook ] = value; |
||||
|
} |
||||
|
}; |
||||
|
jQuery.fx.step[ hook ] = function( fx ) { |
||||
|
if ( !fx.colorInit ) { |
||||
|
fx.start = color( fx.elem, hook ); |
||||
|
fx.end = color( fx.end ); |
||||
|
fx.colorInit = true; |
||||
|
} |
||||
|
jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) ); |
||||
|
}; |
||||
|
}); |
||||
|
|
||||
|
// detect rgba support
|
||||
|
jQuery(function() { |
||||
|
var div = document.createElement( "div" ), |
||||
|
div_style = div.style; |
||||
|
|
||||
|
div_style.cssText = "background-color:rgba(1,1,1,.5)"; |
||||
|
support.rgba = div_style.backgroundColor.indexOf( "rgba" ) > -1; |
||||
|
}); |
||||
|
|
||||
|
// Some named colors to work with
|
||||
|
// From Interface by Stefan Petre
|
||||
|
// http://interface.eyecon.ro/
|
||||
|
colors = jQuery.Color.names = { |
||||
|
aqua: "#00ffff", |
||||
|
azure: "#f0ffff", |
||||
|
beige: "#f5f5dc", |
||||
|
black: "#000000", |
||||
|
blue: "#0000ff", |
||||
|
brown: "#a52a2a", |
||||
|
cyan: "#00ffff", |
||||
|
darkblue: "#00008b", |
||||
|
darkcyan: "#008b8b", |
||||
|
darkgrey: "#a9a9a9", |
||||
|
darkgreen: "#006400", |
||||
|
darkkhaki: "#bdb76b", |
||||
|
darkmagenta: "#8b008b", |
||||
|
darkolivegreen: "#556b2f", |
||||
|
darkorange: "#ff8c00", |
||||
|
darkorchid: "#9932cc", |
||||
|
darkred: "#8b0000", |
||||
|
darksalmon: "#e9967a", |
||||
|
darkviolet: "#9400d3", |
||||
|
fuchsia: "#ff00ff", |
||||
|
gold: "#ffd700", |
||||
|
green: "#008000", |
||||
|
indigo: "#4b0082", |
||||
|
khaki: "#f0e68c", |
||||
|
lightblue: "#add8e6", |
||||
|
lightcyan: "#e0ffff", |
||||
|
lightgreen: "#90ee90", |
||||
|
lightgrey: "#d3d3d3", |
||||
|
lightpink: "#ffb6c1", |
||||
|
lightyellow: "#ffffe0", |
||||
|
lime: "#00ff00", |
||||
|
magenta: "#ff00ff", |
||||
|
maroon: "#800000", |
||||
|
navy: "#000080", |
||||
|
olive: "#808000", |
||||
|
orange: "#ffa500", |
||||
|
pink: "#ffc0cb", |
||||
|
purple: "#800080", |
||||
|
violet: "#800080", |
||||
|
red: "#ff0000", |
||||
|
silver: "#c0c0c0", |
||||
|
white: "#ffffff", |
||||
|
yellow: "#ffff00", |
||||
|
transparent: [ null, null, null, 0 ], |
||||
|
_default: "#ffffff" |
||||
|
}; |
||||
|
})( jQuery ); |
||||
Loading…
Reference in new issue