Private
Server IP : 195.201.23.43  /  Your IP : 18.191.181.186
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/kdecoratie/public_html/plugins/content/sigplus/engines/boxplus/hover/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/kdecoratie/public_html/plugins/content/sigplus/engines/boxplus/hover/js/boxplus.hover.js
/**@license boxplus lightweight window engine on mouse-over
 * @author  Levente Hunyadi
 * @version 1.4.2
 * @remarks Copyright (C) 2009-2010 Levente Hunyadi
 * @remarks Licensed under GNU/GPLv3, see http://www.gnu.org/licenses/gpl-3.0.html
 * @see     http://hunyadi.info.hu/projects/boxplus
 **/

/*
* boxplus: a lightweight pop-up window engine shipped with sigplus
* Copyright 2009-2010 Levente Hunyadi
*
* boxplus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* boxplus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with boxplus.  If not, see <http://www.gnu.org/licenses/>.
*/

if (typeof(__jQuery__) == 'undefined') {
	var __jQuery__ = jQuery;
}
(function ($) {
	/**
	* "Safe" dimension of an element.
	* Some browsers give invalid values with .width() but others give the meaningless,
	* value "auto" with .css('width'), this function bridges the differences.
	*/
	function _safeDimension(obj, dim) {
		var cssvalue = parseInt(obj.css(dim));
		return isNaN(cssvalue) ? obj[dim]() : cssvalue;
	}
	
	$.fn.safeWidth = function () {
		return _safeDimension(this, 'width');
	}

	$.fn.safeHeight = function () {
		return _safeDimension(this, 'height');
	}

	// DOM elements
	var dialog;                   // lightweight pop-up window dialog
	var dialogWidth;              // initial width for dialog
	var dialogHeight;             // initial height for dialog
	var viewer;                   // image viewer inside dialog
	var caption;                  // image caption inside dialog
	var win = $(window);          // browser window

	// Image visualization
	var preloader;                // image preloader
	var anchor;                   // anchor to image being displayed
	var timer;                    // a timer identifier returned by window.setTimeout()

	/**
	* Appends the pop-up window HTML code to the document and initializes global variables.
	* The HTML code inserted is
		<div id="boxplus-dialog" class="hide">
			<div id="boxplus-viewer" class="hide"></div>
			<div id="boxplus-caption" class="hide">
				<p class="title"></p>
				<p class="caption"></p>
			</div>
		</div>
	*/
	$(function () {  // fired when DOM tree is finished loading
		$('body').append('<div id="boxplus-dialog" class="hide"><div id="boxplus-viewer" class="hide"></div><div id="boxplus-caption" class="hide"><p class="title"></p><p class="caption"></p></div></div>');
		
		dialog = $('#boxplus-dialog');
		dialogWidth = dialog.safeWidth();
		dialogHeight = dialog.safeHeight();
		viewer = $('#boxplus-viewer');
		caption = $('#boxplus-caption');
	});
	
	/**
	* Returns the width and height of an element as an object.
	*/
	$.fn.dimensions = function () {
		return { width: parseInt(this.css('width')), height: parseInt(this.css('height')) };
	}
	
	/**
	* Binds the lightweight window to appear when thumbnail images are hovered.
	*/
	$.fn.boxplusHover = function () {
		$(this).hover(_prepareWindow, _hideWindow);
	}
	
	/**
	* Binds the lightweight window to appear when images in a gallery are hovered.
	* A gallery should be specified as a list (ul or ol with li as direct children), each of whose elements wraps an individual image.
	*/
	$.fn.boxplusHoverGallery = function () {
		$('li', this).each( function () {
			var anchor = $('a:has(img)', this).eq(0);  // bind to first anchor that wraps an image in each list item
			if (anchor) {
				anchor.boxplusHover();
				anchor.click(function() { return false; });
			}
		});
	};
	
	/**
	* Smart placement for the lightweight window not to cover the thumbnail image that has triggered displaying the window.
	*/
	function _positionWindow(width, height) {
		// increment width and height to take into account dialog margin, border and padding
		width += dialog.outerWidth(true) - parseInt(dialog.css('width'));
		height += dialog.outerHeight(true) - parseInt(dialog.css('height'));
	
		var thumb = $('img:first', anchor);
		var areaoffset = thumb.offset();  // offset w.r.t. document
		
		// dimensions and offset w.r.t. browser window edges
		var arealeft = areaoffset.left - win.scrollLeft();
		var areatop = areaoffset.top - win.scrollTop();
		var areawidth = thumb.outerWidth();
		var areaheight = thumb.outerHeight();

		var error = [
			arealeft + areawidth + width - win.width(),    // position to the right of area
			areatop + areaheight + height - win.height(),  // position to the bottom of area
			width - arealeft                               // position to the left of area
		];

		// find positioning with minimum error
		var index = -1;
		var min = Infinity;
		for (var k in error) {
			if (error[k] < min) {
				index = k;
				min = error[k];
			}
		}
		
		var x = (win.width() - width) / 2;
		var y = (win.height() - height) / 2;
		var pad = 20;  // keeps distance 
		var left = [
			arealeft + areawidth + pad,
			x,
			arealeft - width - pad
		];
		var top = [
			y,
			areatop + areaheight + pad,
			y
		];

		return {
			left: win.scrollLeft() + left[index],
			top: win.scrollTop() + top[index]
		};
	}

	/**
	* Returns smart-placement position for window.
	*/
	function _getPosition(w, h) {
		return $.extend({
			width: w,
			height: h
		}, _positionWindow(w, h));
	}
	
	/**
	* Fired when the mouse pointer is moved while over an image.
	*/
	function _onMouseMove() {
		clearTimeout(timer);  // clear current timer
		timer = setTimeout(_showWindow, 100);  // set a new timer
	}
	
	/**
	* Sets a timer that will show the pop-up window as soon as the mouse pointer comes to a stop.
	*/
	function _prepareWindow(event) {
		anchor = $(event.currentTarget);
		timer = setTimeout(_showWindow, 100);
		anchor.bind('mousemove', _onMouseMove);
	}
	
	/**
	* Cancel the timer and mouse move events.
	*/
	function _cancelTimer() {
		anchor.unbind('mousemove', _onMouseMove);  
		if (timer) {
			clearTimeout(timer);  // cancel timer that would cause the window to be shown
			timer = null;
		}
	}
	
	/**
	* Shows the lightweight pop-up window.
	*/
	function _showWindow() {
		// cancel mouse move event that would reset timer
		_cancelTimer();
	
		// position the pop-up window
		dialog.css(_positionWindow(dialogWidth, dialogHeight));
		dialog.css({
			width: dialogWidth,
			height: dialogHeight
		});

		// preload image
		$(preloader = new Image()).load(_prepareImage).attr('src', anchor.attr('href'));  // display image when image has been loaded
		dialog.removeClass('hide');
	}
	
	/**
	* Hides the lightweight pop-up window.
	*/
	function _hideWindow() {
		_cancelTimer();
	
		dialog.stop();  // clear any pending animations
		dialog.addClass('hide');
		viewer.addClass('hide');
		caption.addClass('hide');
	}
	
	/**
	* Prepares an image for display in the viewer using a preloaded image.
	*/
	function _prepareImage() {
		// set image viewer dimensions
		var w = preloader.width;
		var h = preloader.height;
		viewer.css({
			width: w,
			height: h
		});
		viewer.css('background-image', 'url("' + anchor.attr('href') +'")');
		preloader = null;

		// set initial position for window
		var pos = _getPosition(w, h);
		dialog.css({
			width: dialogWidth,
			height: dialogHeight,
			left: pos.left + (pos.width - dialogWidth) / 2,
			top: pos.top + (pos.height - dialogHeight) / 2
		});

		// resize dialog box with animation
		dialog.animate(pos, 'fast', 'swing', _showImage);  // ease out to final position for window
	}
	
	/**
	* Displays the image in the viewer.
	*/
	function _showImage() {
		// show image
		viewer.removeClass('hide');
		
		// add caption text
		var thumb = $('img:first', anchor);
		var alttext = thumb.attr('alt');
		var titletext = anchor.attr('title');
		if (alttext && alttext != titletext) {
			$('.title', caption).html(alttext);
		} else {
			$('.title', caption).empty();
		}
		$('.caption', caption).html(titletext);
		
		if (alttext || titletext) {
			// resize dialog to show caption text
			var target = dialog.dimensions();
			target.height += caption.outerHeight(true);
			dialog.animate(target, 'slow', 'swing', _showCaption);
		}
	}
	
	/**
	* Displays the image caption text.
	*/
	function _showCaption() {
		caption.removeClass('hide');
	}
})(__jQuery__);
Private