jquery.lightbox.js
上传用户:stephen_wu
上传日期:2008-07-05
资源大小:1757k
文件大小:14k
源码类别:

网络

开发平台:

Unix_Linux

  1. /**
  2.  * jQuery Lightbox
  3.  * Version 0.5 - 11/29/2007
  4.  * @author Warren Krewenki
  5.  * @url http://code.google.com/p/jquery-lightbox/
  6.  * @license New BSD (http://www.opensource.org/licenses/bsd-license.php)
  7.  *
  8.  * Changes by:
  9.  * @author Krzysztof Kotowicz <koto at webworkers dot pl>:
  10.  *  - bugfix: multiple instances of Lightbox galleries allowed
  11.  *    (using opts variable instead of $.fn.lightbox.defaults)
  12.  *  - bugfix: use var for local variables in a few functions
  13.  *  - added support for navbarOnTop setting
  14.  *  - added support for displayTitle setting
  15.  *  - added support for slideNavBar setting (with slideNavBarSpeed)
  16.  *  - added support for displayHelp setting
  17.  *  - added support for fitToScreen setting (ported Lightbox VinDSL hack)
  18.  *    (see http://www.huddletogether.com/forum/comments.php?DiscussionID=307)
  19.  *  - plugin now uses jQuery.width() and jQuery.height()
  20.  *  - removed eval() calls
  21.  *  - removed destroyElement - uses jQuery.remove()
  22.  *  - use of prevLinkText, nextLinkText and help
  23.  *  - all strings are now placed in opts.strings to allow for customization/translation
  24.  *
  25.  * Based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
  26.  * Originally written to make use of the Prototype framework, and Script.acalo.us, now altered to use jQuery.
  27.  *
  28.  **/
  29. (function($){
  30. var opts;
  31. $.fn.lightbox = function(options){
  32. // build main options
  33. opts = $.extend({}, $.fn.lightbox.defaults, options);
  34. // initalize the lightbox
  35. $.fn.lightbox.initialize();
  36. return this.each(function(){
  37. $(this).click(function(){
  38. $(this).lightbox.start(this);
  39. return false;
  40. });
  41. });
  42. };
  43. // lightbox functions
  44. $.fn.lightbox.initialize = function(){
  45. $('#overlay').remove();
  46. $('#lightbox').remove();
  47. opts.inprogress = false;
  48. var outerImage = '<div id="outerImageContainer"><div id="imageContainer"><img id="lightboxImage"><div id="hoverNav"><a href="javascript://" title="' + opts.strings.prevLinkTitle + '" id="prevLink"></a><a href="javascript://" id="nextLink" title="' + opts.strings.nextLinkTitle + '"></a></div><div id="loading"><a href="javascript://" id="loadingLink"><span id="lightboxloadingspindle">&nbsp;</span></a></div></div></div>';
  49. var imageData = '<div id="imageDataContainer" class="clearfix"><div id="imageData"><div id="imageDetails"><span id="caption"></span><span id="numberDisplay"></span></div><div id="bottomNav">';
  50. if (opts.displayHelp)
  51. imageData += '<span id="helpDisplay">' + opts.strings.help + '</span>';
  52. imageData += '<a href="javascript://" id="bottomNavClose" title="' + opts.strings.closeTitle + '"><span id="lightboxcloseimg">&nbsp;</span></a></div></div></div>';
  53. var string;
  54. if (opts.navbarOnTop) {
  55.   string = '<div id="overlay"></div><div id="lightbox">' + imageData + outerImage + '</div>';
  56.   $("body").append(string);
  57.   $("#imageDataContainer").addClass('ontop');
  58. } else {
  59.   string = '<div id="overlay"></div><div id="lightbox">' + outerImage + imageData + '</div>';
  60.   $("body").append(string);
  61. }
  62. $("#overlay").click(function(){ $.fn.lightbox.end(); }).hide();
  63. $("#lightbox").click(function(){ $.fn.lightbox.end();}).hide();
  64. $("#loadingLink").click(function(){ $.fn.lightbox.end(); return false;});
  65. $("#bottomNavClose").click(function(){ $.fn.lightbox.end(); return false; });
  66. $('#outerImageContainer').width(opts.widthCurrent).height(opts.heightCurrent);
  67. $('#imageDataContainer').width(opts.widthCurrent);
  68. };
  69. $.fn.lightbox.getPageSize = function(){
  70. var xScroll, yScroll;
  71. if (window.innerHeight && window.scrollMaxY) {
  72. xScroll = window.innerWidth + window.scrollMaxX;
  73. yScroll = window.innerHeight + window.scrollMaxY;
  74. } else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
  75. xScroll = document.body.scrollWidth;
  76. yScroll = document.body.scrollHeight;
  77. } else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
  78. xScroll = document.body.offsetWidth;
  79. yScroll = document.body.offsetHeight;
  80. }
  81. var windowWidth, windowHeight;
  82. if (self.innerHeight) { // all except Explorer
  83. if(document.documentElement.clientWidth){
  84. windowWidth = document.documentElement.clientWidth;
  85. } else {
  86. windowWidth = self.innerWidth;
  87. }
  88. windowHeight = self.innerHeight;
  89. } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
  90. windowWidth = document.documentElement.clientWidth;
  91. windowHeight = document.documentElement.clientHeight;
  92. } else if (document.body) { // other Explorers
  93. windowWidth = document.body.clientWidth;
  94. windowHeight = document.body.clientHeight;
  95. }
  96. // for small pages with total height less then height of the viewport
  97. if(yScroll < windowHeight){
  98. pageHeight = windowHeight;
  99. } else {
  100. pageHeight = yScroll;
  101. }
  102. // for small pages with total width less then width of the viewport
  103. if(xScroll < windowWidth){
  104. pageWidth = xScroll;
  105. } else {
  106. pageWidth = windowWidth;
  107. }
  108. var arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
  109. return arrayPageSize;
  110. };
  111. $.fn.lightbox.getPageScroll = function(){
  112. var xScroll, yScroll;
  113. if (self.pageYOffset) {
  114. yScroll = self.pageYOffset;
  115. xScroll = self.pageXOffset;
  116. } else if (document.documentElement && document.documentElement.scrollTop){  // Explorer 6 Strict
  117. yScroll = document.documentElement.scrollTop;
  118. xScroll = document.documentElement.scrollLeft;
  119. } else if (document.body) {// all other Explorers
  120. yScroll = document.body.scrollTop;
  121. xScroll = document.body.scrollLeft;
  122. }
  123. var arrayPageScroll = new Array(xScroll,yScroll);
  124. return arrayPageScroll;
  125. };
  126. $.fn.lightbox.pause = function(ms){
  127. var date = new Date();
  128. var curDate = null;
  129. do{curDate = new Date();}
  130. while( curDate - date < ms);
  131. };
  132. $.fn.lightbox.start = function(imageLink){
  133. $("select, embed, object").hide();
  134. var arrayPageSize = $.fn.lightbox.getPageSize();
  135. $("#overlay").hide().css({width: '100%', height: arrayPageSize[1]+'px', opacity : opts.overlayOpacity}).fadeIn();
  136. opts.imageArray = [];
  137. imageNum = 0;
  138. var anchors = document.getElementsByTagName( imageLink.tagName);
  139. // if image is NOT part of a set..
  140. if(!imageLink.rel || (imageLink.rel == '')){
  141. // add single image to Lightbox.imageArray
  142. opts.imageArray.push(new Array(imageLink.href, opts.displayTitle ? imageLink.title : ''));
  143. } else {
  144. // if image is part of a set..
  145. $("a").each(function(){
  146. if(this.href && (this.rel == imageLink.rel)){
  147. opts.imageArray.push(new Array(this.href, opts.displayTitle ? this.title : ''));
  148. }
  149. });
  150. for(i = 0; i < opts.imageArray.length; i++){
  151. for(j = opts.imageArray.length-1; j>i; j--){
  152. if(opts.imageArray[i][0] == opts.imageArray[j][0]){
  153. opts.imageArray.splice(j,1);
  154. }
  155. }
  156. }
  157. while(opts.imageArray[imageNum][0] != imageLink.href) { imageNum++;}
  158. }
  159. // calculate top and left offset for the lightbox
  160. var arrayPageScroll = $.fn.lightbox.getPageScroll();
  161. var lightboxTop = arrayPageScroll[1] + (arrayPageSize[3] / 10);
  162. var lightboxLeft = arrayPageScroll[0];
  163. $('#lightbox').css({top: lightboxTop+'px', left: lightboxLeft+'px'}).show();
  164. if (!opts.slideNavBar)
  165. $('#imageData').hide();
  166. $.fn.lightbox.changeImage(imageNum);
  167. };
  168. $.fn.lightbox.changeImage = function(imageNum){
  169. if(opts.inprogress == false){
  170. opts.inprogress = true;
  171. opts.activeImage = imageNum; // update global var
  172. // hide elements during transition
  173. $('#loading').show();
  174. $('#lightboxImage').hide();
  175. $('#hoverNav').hide();
  176. $('#prevLink').hide();
  177. $('#nextLink').hide();
  178. if (opts.slideNavBar) { // delay preloading image until navbar will slide up
  179. // $('#imageDataContainer').slideUp(opts.navBarSlideSpeed, $.fn.doChangeImage);
  180. $('#imageDataContainer').hide();
  181. $('#imageData').hide();
  182. $.fn.doChangeImage();
  183. } else {
  184.     $.fn.doChangeImage();
  185. }
  186. }
  187. };
  188. $.fn.doChangeImage = function(){
  189. imgPreloader = new Image();
  190. // once image is preloaded, resize image container
  191. imgPreloader.onload=function(){
  192.     var newWidth = imgPreloader.width;
  193.     var newHeight = imgPreloader.height;
  194. if (opts.fitToScreen) {
  195.         var arrayPageSize = $.fn.lightbox.getPageSize();
  196. var ratio;
  197. var initialPageWidth = arrayPageSize[2] - 2 * opts.borderSize;
  198. var initialPageHeight = arrayPageSize[3] - 200;
  199. if (imgPreloader.height > initialPageHeight)
  200. {
  201. newWidth = parseInt((initialPageHeight/imgPreloader.height) * imgPreloader.width);
  202. newHeight = initialPageHeight;
  203. }
  204. else if (imgPreloader.width > initialPageWidth)
  205. {
  206. newHeight = parseInt((initialPageWidth/imgPreloader.width) * imgPreloader.height);
  207. newWidth = initialPageWidth;
  208. }
  209. }
  210. $('#lightboxImage').attr('src', opts.imageArray[opts.activeImage][0])
  211.    .width(newWidth).height(newHeight);
  212. $.fn.lightbox.resizeImageContainer(newWidth, newHeight);
  213. };
  214. imgPreloader.src = opts.imageArray[opts.activeImage][0];
  215. };
  216. $.fn.lightbox.end = function(){
  217. $.fn.lightbox.disableKeyboardNav();
  218. $('#lightbox').hide();
  219. $('#overlay').fadeOut();
  220. $('select, object, embed').show();
  221. };
  222. $.fn.lightbox.preloadNeighborImages = function(){
  223. if((opts.imageArray.length - 1) > opts.activeImage){
  224. preloadNextImage = new Image();
  225. preloadNextImage.src = opts.imageArray[opts.activeImage + 1][0];
  226. }
  227. if(opts.activeImage > 0){
  228. preloadPrevImage = new Image();
  229. preloadPrevImage.src = opts.imageArray[opts.activeImage - 1][0];
  230. }
  231. };
  232. $.fn.lightbox.keyboardAction = function(e){
  233. if (e == null) { // ie
  234. var keycode = event.keyCode;
  235. var escapeKey = 27;
  236. } else { // mozilla
  237. var keycode = e.keyCode;
  238. var escapeKey = e.DOM_VK_ESCAPE;
  239. }
  240. var key = String.fromCharCode(keycode).toLowerCase();
  241. if((key == 'x') || (key == 'o') || (key == 'c') || (keycode == escapeKey)){ // close lightbox
  242. $.fn.lightbox.end();
  243. } else if((key == 'p') || (keycode == 37)){ // display previous image
  244. if(opts.activeImage != 0){
  245. $.fn.lightbox.disableKeyboardNav();
  246. $.fn.lightbox.changeImage(opts.activeImage - 1);
  247. }
  248. } else if((key == 'n') || (keycode == 39)){ // display next image
  249. if(opts.activeImage != (opts.imageArray.length - 1)){
  250. $.fn.lightbox.disableKeyboardNav();
  251. $.fn.lightbox.changeImage(opts.activeImage + 1);
  252. }
  253. }
  254. };
  255. $.fn.lightbox.resizeImageContainer = function(imgWidth, imgHeight){
  256. // get current width and height
  257. opts.widthCurrent = document.getElementById('outerImageContainer').offsetWidth;
  258. opts.heightCurrent = document.getElementById('outerImageContainer').offsetHeight;
  259. // get new width and height
  260. var widthNew = (imgWidth  + (opts.borderSize * 2));
  261. var heightNew = (imgHeight  + (opts.borderSize * 2));
  262. // scalars based on change from old to new
  263. opts.xScale = ( widthNew / opts.widthCurrent) * 100;
  264. opts.yScale = ( heightNew / opts.heightCurrent) * 100;
  265. // calculate size difference between new and old image, and resize if necessary
  266. wDiff = opts.widthCurrent - widthNew;
  267. hDiff = opts.heightCurrent - heightNew;
  268. $('#imageDataContainer').animate({width: widthNew},opts.resizeSpeed,'linear');
  269. $('#outerImageContainer').animate({width: widthNew, height: heightNew},opts.resizeSpeed,'linear',function(){
  270. $.fn.lightbox.showImage();
  271. });
  272. // if new and old image are same size and no scaling transition is necessary,
  273. // do a quick pause to prevent image flicker.
  274. if((hDiff == 0) && (wDiff == 0)){
  275. if (jQuery.browser.msie){ $.fn.lightbox.pause(250); } else { $.fn.lightbox.pause(100);}
  276. }
  277. $('#prevLink').height(imgHeight);
  278. $('#nextLink').height(imgHeight);
  279. };
  280. $.fn.lightbox.showImage = function(){
  281. $('#loading').hide();
  282. $('#lightboxImage').fadeIn("fast");
  283. $.fn.lightbox.updateDetails();
  284. $.fn.lightbox.preloadNeighborImages();
  285. opts.inprogress = false;
  286. };
  287. $.fn.lightbox.updateDetails = function(){
  288. if(opts.imageArray[opts.activeImage][1]){
  289. $('#caption').html(opts.imageArray[opts.activeImage][1]).show();
  290. }
  291. // if image is part of set display 'Image x of x'
  292. if(opts.imageArray.length > 1){
  293. var nav_html;
  294. nav_html = opts.strings.image + (opts.activeImage + 1) + opts.strings.of + opts.imageArray.length;
  295. // display previous / next text links
  296. if ((opts.activeImage) > 0) {
  297. nav_html = '<a title="' + opts.strings.prevLinkTitle + '" href="#" id="prevLinkText">' + opts.strings.prevLinkText + "</a>" + nav_html;
  298. }
  299. if ((opts.activeImage + 1) < opts.imageArray.length) {
  300. nav_html += '<a title="' + opts.strings.nextLinkTitle + '" href="#" id="nextLinkText">' + opts.strings.nextLinkText + "</a>";
  301. }
  302. $('#numberDisplay').html(nav_html).show();
  303. }
  304. if (opts.slideNavBar) {
  305.     $("#imageData").slideDown(opts.navBarSlideSpeed);
  306. } else {
  307. $("#imageData").show();
  308. }
  309. var arrayPageSize = $.fn.lightbox.getPageSize();
  310. $('#overlay').height(arrayPageSize[1]);
  311. $.fn.lightbox.updateNav();
  312. };
  313. $.fn.lightbox.updateNav = function(){
  314. $('#hoverNav').show();
  315. // if not first image in set, display prev image button
  316. if(opts.activeImage != 0){
  317. $('#prevLink,#prevLinkText').show().click(function(){
  318. $.fn.lightbox.changeImage(opts.activeImage - 1); return false;
  319. });
  320. }
  321. // if not last image in set, display next image button
  322. if(opts.activeImage != (opts.imageArray.length - 1)){
  323. $('#nextLink,#nextLinkText').show().click(function(){
  324. $.fn.lightbox.changeImage(opts.activeImage +1); return false;
  325. });
  326. }
  327. $.fn.lightbox.enableKeyboardNav();
  328. };
  329. $.fn.lightbox.enableKeyboardNav = function(){
  330. document.onkeydown = $.fn.lightbox.keyboardAction;
  331. };
  332. $.fn.lightbox.disableKeyboardNav = function(){
  333. document.onkeydown = '';
  334. };
  335. $.fn.lightbox.defaults = {
  336. overlayOpacity : 0.8,
  337. borderSize : 10,
  338. imageArray : new Array,
  339. activeImage : null,
  340. inprogress : false,
  341. resizeSpeed : 350,
  342. widthCurrent: 250,
  343. heightCurrent: 250,
  344. xScale : 1,
  345. yScale : 1,
  346. displayTitle: false,
  347. navbarOnTop: false,
  348. slideNavBar: true, // slide nav bar up/down between image resizing transitions
  349. navBarSlideSpeed: 350,
  350. displayHelp: true,
  351. strings : {
  352. help: ' u2190 / P - previous imageu00a0u00a0u00a0u00a0u2192 / N - next imageu00a0u00a0u00a0u00a0ESC / X - close image gallery',
  353. prevLinkTitle: 'previous image',
  354. nextLinkTitle: 'next image',
  355. prevLinkText:  '&laquo; Previous',
  356. nextLinkText:  'Next &raquo;',
  357. closeTitle: 'close image gallery',
  358. image: 'Image ',
  359. of: ' of '
  360. },
  361. fitToScreen: false // resize images if they are bigger than window
  362. };
  363. })(jQuery);