Вход Регистрация
Файл: templates/frontend/dark-orange/js/jquery.imgareaselect.js
Строк: 683
<?php
/*
 * imgAreaSelect jQuery plugin
 * version 0.9.10
 *
 * Copyright (c) 2008-2013 Michal Wojciechowski (odyniec.net)
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://odyniec.net/projects/imgareaselect/
 *
 */

(function($) {

var 
abs Math.abs,
    
max Math.max,
    
min Math.min,
    
round Math.round;

function 
div() {
    return $(
'<div/>');
}

$.
imgAreaSelect = function (imgoptions) {
    var

        
$img = $(img),

        
imgLoaded,

        
$box div(),
        
$area div(),
        
$border div().add(div()).add(div()).add(div()),
        
$outer div().add(div()).add(div()).add(div()),
        
$handles = $([]),

        
$areaOpera,

        
lefttop,

        
imgOfs = { left0top},

        
imgWidthimgHeight,

        
$parent,

        
parOfs = { left0top},

        
zIndex 0,

        
position 'absolute',

        
startXstartY,

        
scaleXscaleY,

        
resize,

        
minWidthminHeightmaxWidthmaxHeight,

        
aspectRatio,

        
shown,

        
x1y1x2y2,

        
selection = { x10y10x20y20width0height},

        
docElem document.documentElement,

        
ua navigator.userAgent,

        
$pdiowhadjusted;

    function 
viewX(x) {
        return 
imgOfs.left parOfs.left;
    }

    function 
viewY(y) {
        return 
imgOfs.top parOfs.top;
    }

    function 
selX(x) {
        return 
imgOfs.left parOfs.left;
    }

    function 
selY(y) {
        return 
imgOfs.top parOfs.top;
    }

    function 
evX(event) {
        return 
event.pageX parOfs.left;
    }

    function 
evY(event) {
        return 
event.pageY parOfs.top;
    }

    function 
getSelection(noScale) {
        var 
sx noScale || scaleXsy noScale || scaleY;

        return { 
x1round(selection.x1 sx),
            
y1round(selection.y1 sy),
            
x2round(selection.x2 sx),
            
y2round(selection.y2 sy),
            
widthround(selection.x2 sx) - round(selection.x1 sx),
            
heightround(selection.y2 sy) - round(selection.y1 sy) };
    }

    function 
setSelection(x1y1x2y2noScale) {
        var 
sx noScale || scaleXsy noScale || scaleY;

        
selection = {
            
x1round(x1 sx || 0),
            
y1round(y1 sy || 0),
            
x2round(x2 sx || 0),
            
y2round(y2 sy || 0)
        };

        
selection.width selection.x2 selection.x1;
        
selection.height selection.y2 selection.y1;
    }

    function 
adjust() {
        if (!
imgLoaded || !$img.width())
            return;

        
imgOfs = { leftround($img.offset().left), topround($img.offset().top) };

        
imgWidth $img.innerWidth();
        
imgHeight $img.innerHeight();

        
imgOfs.top += ($img.outerHeight() - imgHeight) >> 1;
        
imgOfs.left += ($img.outerWidth() - imgWidth) >> 1;

        
minWidth round(options.minWidth scaleX) || 0;
        
minHeight round(options.minHeight scaleY) || 0;
        
maxWidth round(min(options.maxWidth scaleX || 1<<24imgWidth));
        
maxHeight round(min(options.maxHeight scaleY || 1<<24imgHeight));

        if ($().
jquery == '1.3.2' && position == 'fixed' &&
            !
docElem['getBoundingClientRect'])
        {
            
imgOfs.top += max(document.body.scrollTopdocElem.scrollTop);
            
imgOfs.left += max(document.body.scrollLeftdocElem.scrollLeft);
        }

        
parOfs = /absolute|relative/.test($parent.css('position')) ?
            { 
leftround($parent.offset().left) - $parent.scrollLeft(),
                
topround($parent.offset().top) - $parent.scrollTop() } :
            
position == 'fixed' ?
                { 
left: $(document).scrollLeft(), top: $(document).scrollTop() } :
                { 
left0top};

        
left viewX(0);
        
top viewY(0);

        if (
selection.x2 imgWidth || selection.y2 imgHeight)
            
doResize();
    }

    function 
update(resetKeyPress) {
        if (!
shown) return;

        
$box.css({ leftviewX(selection.x1), topviewY(selection.y1) })
            .
add($area).width(selection.width).height(selection.height);

        
$area.add($border).add($handles).css({ left0top});

        
$border
            
.width(max($border.outerWidth() + $border.innerWidth(), 0))
            .
height(max($border.outerHeight() + $border.innerHeight(), 0));

        $(
$outer[0]).css({ leftlefttoptop,
            
widthselection.x1heightimgHeight });
        $(
$outer[1]).css({ leftleft selection.x1toptop,
            
widthwheightselection.y1 });
        $(
$outer[2]).css({ leftleft selection.x2toptop,
            
widthimgWidth selection.x2heightimgHeight });
        $(
$outer[3]).css({ leftleft selection.x1toptop selection.y2,
            
widthwheightimgHeight selection.y2 });

        
-= $handles.outerWidth();
        
-= $handles.outerHeight();

        switch (
$handles.length) {
        case 
8:
            $(
$handles[4]).css({ left>> });
            $(
$handles[5]).css({ leftwtop>> });
            $(
$handles[6]).css({ left>> 1top});
            $(
$handles[7]).css({ top>> });
        case 
4:
            
$handles.slice(1,3).css({ left});
            
$handles.slice(2,4).css({ top});
        }

        if (
resetKeyPress !== false) {
            if ($.
imgAreaSelect.onKeyPress != docKeyPress)
                $(
document).unbind($.imgAreaSelect.keyPress,
                    $.
imgAreaSelect.onKeyPress);

            if (
options.keys)
                $(
document)[$.imgAreaSelect.keyPress](
                    $.
imgAreaSelect.onKeyPress docKeyPress);
        }

        if (
msie && $border.outerWidth() - $border.innerWidth() == 2) {
            
$border.css('margin'0);
            
setTimeout(function () { $border.css('margin''auto'); }, 0);
        }
    }

    function 
doUpdate(resetKeyPress) {
        
adjust();
        
update(resetKeyPress);
        
x1 viewX(selection.x1); y1 viewY(selection.y1);
        
x2 viewX(selection.x2); y2 viewY(selection.y2);
    }

    function 
hide($elem, fn) {
        
options.fadeSpeed $elem.fadeOut(options.fadeSpeed, fn) : $elem.hide();

    }

    function 
areaMouseMove(event) {
        var 
selX(evX(event)) - selection.x1,
            
selY(evY(event)) - selection.y1;

        if (!
adjusted) {
            
adjust();
            
adjusted true;

            
$box.one('mouseout', function () { adjusted false; });
        }

        
resize '';

        if (
options.resizable) {
            if (
<= options.resizeMargin)
                
resize 'n';
            else if (
>= selection.height options.resizeMargin)
                
resize 's';
            if (
<= options.resizeMargin)
                
resize += 'w';
            else if (
>= selection.width options.resizeMargin)
                
resize += 'e';
        }

        
$box.css('cursor'resize resize '-resize' :
            
options.movable 'move' '');
        if (
$areaOpera)
            
$areaOpera.toggle();
    }

    function 
docMouseUp(event) {
        $(
'body').css('cursor''');
        if (
options.autoHide || selection.width selection.height == 0)
            
hide($box.add($outer), function () { $(this).hide(); });

        $(
document).unbind('mousemove'selectingMouseMove);
        
$box.mousemove(areaMouseMove);

        
options.onSelectEnd(imggetSelection());
    }

    function 
areaMouseDown(event) {
        if (
event.which != 1) return false;

        
adjust();

        if (
resize) {
            $(
'body').css('cursor'resize '-resize');

            
x1 viewX(selection[/w/.test(resize) ? 'x2' 'x1']);
            
y1 viewY(selection[/n/.test(resize) ? 'y2' 'y1']);

            $(
document).mousemove(selectingMouseMove)
                .
one('mouseup'docMouseUp);
            
$box.unbind('mousemove'areaMouseMove);
        }
        else if (
options.movable) {
            
startX left selection.x1 evX(event);
            
startY top selection.y1 evY(event);

            
$box.unbind('mousemove'areaMouseMove);

            $(
document).mousemove(movingMouseMove)
                .
one('mouseup', function () {
                    
options.onSelectEnd(imggetSelection());

                    $(
document).unbind('mousemove'movingMouseMove);
                    
$box.mousemove(areaMouseMove);
                });
        }
        else
            
$img.mousedown(event);

        return 
false;
    }

    function 
fixAspectRatio(xFirst) {
        if (
aspectRatio)
            if (
xFirst) {
                
x2 max(leftmin(left imgWidth,
                    
x1 abs(y2 y1) * aspectRatio * (x2 x1 || -1)));

                
y2 round(max(topmin(top imgHeight,
                    
y1 abs(x2 x1) / aspectRatio * (y2 y1 || -1))));
                
x2 round(x2);
            }
            else {
                
y2 max(topmin(top imgHeight,
                    
y1 abs(x2 x1) / aspectRatio * (y2 y1 || -1)));
                
x2 round(max(leftmin(left imgWidth,
                    
x1 abs(y2 y1) * aspectRatio * (x2 x1 || -1))));
                
y2 round(y2);
            }
    }

    function 
doResize() {
        
x1 min(x1left imgWidth);
        
y1 min(y1top imgHeight);

        if (
abs(x2 x1) < minWidth) {
            
x2 x1 minWidth * (x2 x1 || -1);

            if (
x2 left)
                
x1 left minWidth;
            else if (
x2 left imgWidth)
                
x1 left imgWidth minWidth;
        }

        if (
abs(y2 y1) < minHeight) {
            
y2 y1 minHeight * (y2 y1 || -1);

            if (
y2 top)
                
y1 top minHeight;
            else if (
y2 top imgHeight)
                
y1 top imgHeight minHeight;
        }

        
x2 max(leftmin(x2left imgWidth));
        
y2 max(topmin(y2top imgHeight));

        
fixAspectRatio(abs(x2 x1) < abs(y2 y1) * aspectRatio);

        if (
abs(x2 x1) > maxWidth) {
            
x2 x1 maxWidth * (x2 x1 || -1);
            
fixAspectRatio();
        }

        if (
abs(y2 y1) > maxHeight) {
            
y2 y1 maxHeight * (y2 y1 || -1);
            
fixAspectRatio(true);
        }

        
selection = { x1selX(min(x1x2)), x2selX(max(x1x2)),
            
y1selY(min(y1y2)), y2selY(max(y1y2)),
            
widthabs(x2 x1), heightabs(y2 y1) };

        
update();

        
options.onSelectChange(imggetSelection());
    }

    function 
selectingMouseMove(event) {
        
x2 = /w|e|^$/.test(resize) || aspectRatio evX(event) : viewX(selection.x2);
        
y2 = /n|s|^$/.test(resize) || aspectRatio evY(event) : viewY(selection.y2);

        
doResize();

        return 
false;

    }

    function 
doMove(newX1newY1) {
        
x2 = (x1 newX1) + selection.width;
        
y2 = (y1 newY1) + selection.height;

        $.
extend(selection, { x1selX(x1), y1selY(y1), x2selX(x2),
            
y2selY(y2) });

        
update();

        
options.onSelectChange(imggetSelection());
    }

    function 
movingMouseMove(event) {
        
x1 max(leftmin(startX evX(event), left imgWidth selection.width));
        
y1 max(topmin(startY evY(event), top imgHeight selection.height));

        
doMove(x1y1);

        
event.preventDefault();

        return 
false;
    }

    function 
startSelection() {
        $(
document).unbind('mousemove'startSelection);
        
adjust();

        
x2 x1;
        
y2 y1;

        
doResize();

        
resize '';

        if (!
$outer.is(':visible'))
            
$box.add($outer).hide().fadeIn(options.fadeSpeed||0);

        
shown true;

        $(
document).unbind('mouseup'cancelSelection)
            .
mousemove(selectingMouseMove).one('mouseup'docMouseUp);
        
$box.unbind('mousemove'areaMouseMove);

        
options.onSelectStart(imggetSelection());
    }

    function 
cancelSelection() {
        $(
document).unbind('mousemove'startSelection)
            .
unbind('mouseup'cancelSelection);
        
hide($box.add($outer));

        
setSelection(selX(x1), selY(y1), selX(x1), selY(y1));

        if (!(
this instanceof $.imgAreaSelect)) {
            
options.onSelectChange(imggetSelection());
            
options.onSelectEnd(imggetSelection());
        }
    }

    function 
imgMouseDown(event) {
        if (
event.which != || $outer.is(':animated')) return false;

        
adjust();
        
startX x1 evX(event);
        
startY y1 evY(event);

        $(
document).mousemove(startSelection).mouseup(cancelSelection);

        return 
false;
    }

    function 
windowResize() {
        
doUpdate(false);
    }

    function 
imgLoad() {
        
imgLoaded true;

        
setOptions(options = $.extend({
            
classPrefix'hidden-xs imgareaselect',
            
movabletrue,
            
parent'body',
            
resizabletrue,
            
resizeMargin10,
            
onInit: function () {},
            
onSelectStart: function () {},
            
onSelectChange: function () {},
            
onSelectEnd: function () {}
        }, 
options));

        
$box.add($outer).css({ visibility'' });

        if (
options.show) {
            
shown true;
            
adjust();
            
update();
            
$box.add($outer).hide().fadeIn(options.fadeSpeed||0);
        }

        
setTimeout(function () { options.onInit(imggetSelection()); }, 0);
    }

    var 
docKeyPress = function(event) {
        var 
options.keysdtkey event.keyCode;

        
= !isNaN(k.alt) && (event.altKey || event.originalEvent.altKey) ? k.alt :
            !
isNaN(k.ctrl) && event.ctrlKey k.ctrl :
            !
isNaN(k.shift) && event.shiftKey k.shift :
            !
isNaN(k.arrows) ? k.arrows 10;

        if (
k.arrows == 'resize' || (k.shift == 'resize' && event.shiftKey) ||
            (
k.ctrl == 'resize' && event.ctrlKey) ||
            (
k.alt == 'resize' && (event.altKey || event.originalEvent.altKey)))
        {
            switch (
key) {
            case 
37:
                
= -d;
            case 
39:
                
max(x1x2);
                
x1 min(x1x2);
                
x2 max(dx1);
                
fixAspectRatio();
                break;
            case 
38:
                
= -d;
            case 
40:
                
max(y1y2);
                
y1 min(y1y2);
                
y2 max(dy1);
                
fixAspectRatio(true);
                break;
            default:
                return;
            }

            
doResize();
        }
        else {
            
x1 min(x1x2);
            
y1 min(y1y2);

            switch (
key) {
            case 
37:
                
doMove(max(x1 dleft), y1);
                break;
            case 
38:
                
doMove(x1max(y1 dtop));
                break;
            case 
39:
                
doMove(x1 min(dimgWidth selX(x2)), y1);
                break;
            case 
40:
                
doMove(x1y1 min(dimgHeight selY(y2)));
                break;
            default:
                return;
            }
        }

        return 
false;
    };

    function 
styleOptions($elemprops) {
        for (var 
option in props)
            if (
options[option] !== undefined)
                
$elem.css(props[option], options[option]);
    }

    function 
setOptions(newOptions) {
        if (
newOptions.parent)
            (
$parent = $(newOptions.parent)).append($box.add($outer));

        $.
extend(optionsnewOptions);

        
adjust();

        if (
newOptions.handles != null) {
            
$handles.remove();
            
$handles = $([]);

            
newOptions.handles newOptions.handles == 'corners' 0;

            while (
i--)
                
$handles $handles.add(div());

            
$handles.addClass(options.classPrefix '-handle').css({
                
position'absolute',
                
fontSize0,
                
zIndexzIndex || 1
            
});

            if (!
parseInt($handles.css('width')) >= 0)
                
$handles.width(5).height(5);

            if (
options.borderWidth)
                
$handles.css({ borderWidthoborderStyle'solid' });

            
styleOptions($handles, { borderColor1'border-color',
                
borderColor2'background-color',
                
borderOpacity'opacity' });
        }

        
scaleX options.imageWidth imgWidth || 1;
        
scaleY options.imageHeight imgHeight || 1;

        if (
newOptions.x1 != null) {
            
setSelection(newOptions.x1newOptions.y1newOptions.x2,
                
newOptions.y2);
            
newOptions.show = !newOptions.hide;
        }

        if (
newOptions.keys)
            
options.keys = $.extend({ shift1ctrl'resize' },
                
newOptions.keys);

        
$outer.addClass(options.classPrefix '-outer');
        
$area.addClass(options.classPrefix '-selection');
        for (
0i++ < 4;)
            $(
$border[i-1]).addClass(options.classPrefix '-border' i);

        
styleOptions($area, { selectionColor'background-color',
            
selectionOpacity'opacity' });
        
styleOptions($border, { borderOpacity'opacity',
            
borderWidth'border-width' });
        
styleOptions($outer, { outerColor'background-color',
            
outerOpacity'opacity' });
        if (
options.borderColor1)
            $(
$border[0]).css({ borderStyle'solid'borderColor});
        if (
options.borderColor2)
            $(
$border[1]).css({ borderStyle'dashed'borderColor});

        
$box.append($area.add($border).add($areaOpera)).append($handles);

        if (
msie) {
            if (
= ($outer.css('filter')||'').match(/opacity=(d+)/))
                
$outer.css('opacity'o[1]/100);
            if (
= ($border.css('filter')||'').match(/opacity=(d+)/))
                
$border.css('opacity'o[1]/100);
        }

        if (
newOptions.hide)
            
hide($box.add($outer));
        else if (
newOptions.show && imgLoaded) {
            
shown true;
            
$box.add($outer).fadeIn(options.fadeSpeed||0);
            
doUpdate();
        }

        
aspectRatio = (= (options.aspectRatio || '').split(/:/))[0] / d[1];

        
$img.add($outer).unbind('mousedown'imgMouseDown);

        if (
options.disable || options.enable === false) {
            
$box.unbind('mousemove'areaMouseMove).unbind('mousedown'areaMouseDown);
            $(
window).unbind('resize'windowResize);
        }
        else {
            if (
options.enable || options.disable === false) {
                if (
options.resizable || options.movable)
                    
$box.mousemove(areaMouseMove).mousedown(areaMouseDown);

                $(
window).resize(windowResize);
            }

            if (!
options.persistent)
                
$img.add($outer).mousedown(imgMouseDown);
        }

        
options.enable options.disable undefined;
    }

    
this.remove = function () {
        
setOptions({ disabletrue });
        
$box.add($outer).remove();
    };

    
this.getOptions = function () { return options; };

    
this.setOptions setOptions;

    
this.getSelection getSelection;

    
this.setSelection setSelection;

    
this.cancelSelection cancelSelection;

    
this.update doUpdate;

    var 
msie = (/msie ([w.]+)/i.exec(ua)||[])[1],
        
opera = /opera/i.test(ua),
        
safari = /webkit/i.test(ua) && !/chrome/i.test(ua);

    
$p $img;

    while (
$p.length) {
        
zIndex max(zIndex,
            !
isNaN($p.css('z-index')) ? $p.css('z-index') : zIndex);
        if (
$p.css('position') == 'fixed')
            
position 'fixed';

        
$p $p.parent(':not(body)');
    }

    
zIndex options.zIndex || zIndex;

    if (
msie)
        
$img.attr('unselectable''on');

    $.
imgAreaSelect.keyPress msie || safari 'keydown' 'keypress';

    if (
opera)

        
$areaOpera div().css({ width'100%'height'100%',
            
position'absolute'zIndexzIndex || });

    
$box.add($outer).css({ visibility'hidden'positionposition,
        
overflow'hidden'zIndexzIndex || '0' });
    
$box.css({ zIndexzIndex || });
    
$area.add($border).css({ position'absolute'fontSize});
    
$box.addClass("hidden-xs");
    
img.complete || img.readyState == 'complete' || !$img.is('img') ?
        
imgLoad() : $img.one('load'imgLoad);

    if (!
imgLoaded && msie && msie >= 7)
        
img.src img.src;
};

$.fn.
imgAreaSelect = function (options) {
    
options options || {};

    
this.each(function () {
        if ($(
this).data('imgAreaSelect')) {
            if (
options.remove) {
                $(
this).data('imgAreaSelect').remove();
                $(
this).removeData('imgAreaSelect');
            }
            else
                $(
this).data('imgAreaSelect').setOptions(options);
        }
        else if (!
options.remove) {
            if (
options.enable === undefined && options.disable === undefined)
                
options.enable true;

            $(
this).data('imgAreaSelect', new $.imgAreaSelect(thisoptions));
        }
    });

    if (
options.instance)
        return $(
this).data('imgAreaSelect');

    return 
this;
};

})(
jQuery);
?>
Онлайн: 2
Реклама