/* ***********************************************************/ /** * @name : Mac Doc Photogallery. * @version : 2.5 * @package : apptha * @subpackage : mac-doc-photogallery * @author : Apptha - http://www.apptha.com * @copyright : Copyright (C) 2011 Powered by Apptha * @license : GNU General Public License version 2 or later; see LICENSE.txt * @abstract : The core file of calling Mac Photo Gallery. * @Creation Date : June 20 2011 * @Modified Date : September 30 2011 * */ /* ***********************************************************/ this.imagePreview = function(){ /* CONFIG */ xOffset = 10; yOffset = 30; // these 2 variable determine popup's distance from the cursor // you might want to adjust to get the right result /* END CONFIG */ dragdr("a.preview").hover(function(e){ this.t = this.title; this.title = ""; var c = (this.t != "") ? "
" + this.t : ""; dragdr("body").append("

Image preview"+ c +"

");//alert('TTTDD'); dragdr("#preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px") .fadeIn("fast"); //alert('title'); }, function(){ this.title = this.t; dragdr("#preview").remove(); }); dragdr("a.preview").mousemove(function(e){ dragdr("#preview") .css("top",(e.pageY - xOffset) + "px") .css("left",(e.pageX + yOffset) + "px"); }); }; var dragdr = jQuery.noConflict();