ad-gallery.js 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. /**
  2. * Copyright (c) 2010 Anders Ekdahl (http://coffeescripter.com/)
  3. * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
  4. * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
  5. *
  6. * Version: 1.2.4
  7. *
  8. * Demo and documentation: http://coffeescripter.com/code/ad-gallery/
  9. */
  10. (function($) {
  11. $.fn.adGallery = function(options) {
  12. var defaults = { loader_image: 'loader.gif',
  13. start_at_index: 0,
  14. description_wrapper: false,
  15. thumb_opacity: 0.7,
  16. animate_first_image: false,
  17. animation_speed: 400,
  18. width: false,
  19. height: false,
  20. display_next_and_prev: true,
  21. display_back_and_forward: true,
  22. scroll_jump: 0, // If 0, it jumps the width of the container
  23. slideshow: {
  24. enable: true,
  25. autostart: false,
  26. speed: 5000,
  27. start_label: 'Start',
  28. stop_label: 'Stop',
  29. stop_on_scroll: true,
  30. countdown_prefix: '(',
  31. countdown_sufix: ')',
  32. onStart: false,
  33. onStop: false
  34. },
  35. effect: 'slide-hori', // or 'slide-vert', 'fade', or 'resize', 'none'
  36. enable_keyboard_move: true,
  37. cycle: true,
  38. callbacks: {
  39. init: false,
  40. afterImageVisible: false,
  41. beforeImageVisible: false
  42. }
  43. };
  44. var settings = $.extend(false, defaults, options);
  45. if(options && options.slideshow) {
  46. settings.slideshow = $.extend(false, defaults.slideshow, options.slideshow);
  47. };
  48. if(!settings.slideshow.enable) {
  49. settings.slideshow.autostart = false;
  50. };
  51. var galleries = [];
  52. $(this).each(function() {
  53. var gallery = new AdGallery(this, settings);
  54. galleries[galleries.length] = gallery;
  55. });
  56. // Sorry, breaking the jQuery chain because the gallery instances
  57. // are returned so you can fiddle with them
  58. return galleries;
  59. };
  60. function VerticalSlideAnimation(img_container, direction, desc) {
  61. var current_top = parseInt(img_container.css('top'), 10);
  62. if(direction == 'left') {
  63. var old_image_top = '-'+ this.image_wrapper_height +'px';
  64. img_container.css('top', this.image_wrapper_height +'px');
  65. } else {
  66. var old_image_top = this.image_wrapper_height +'px';
  67. img_container.css('top', '-'+ this.image_wrapper_height +'px');
  68. };
  69. if(desc) {
  70. desc.css('bottom', '-'+ desc[0].offsetHeight +'px');
  71. desc.animate({bottom: 0}, this.settings.animation_speed * 2);
  72. };
  73. if(this.current_description) {
  74. this.current_description.animate({bottom: '-'+ this.current_description[0].offsetHeight +'px'}, this.settings.animation_speed * 2);
  75. };
  76. return {old_image: {top: old_image_top},
  77. new_image: {top: current_top}};
  78. };
  79. function HorizontalSlideAnimation(img_container, direction, desc) {
  80. var current_left = parseInt(img_container.css('left'), 10);
  81. if(direction == 'left') {
  82. var old_image_left = '-'+ this.image_wrapper_width +'px';
  83. img_container.css('left',this.image_wrapper_width +'px');
  84. } else {
  85. var old_image_left = this.image_wrapper_width +'px';
  86. img_container.css('left','-'+ this.image_wrapper_width +'px');
  87. };
  88. if(desc) {
  89. desc.css('bottom', '-'+ desc[0].offsetHeight +'px');
  90. desc.animate({bottom: 0}, this.settings.animation_speed * 2);
  91. };
  92. if(this.current_description) {
  93. this.current_description.animate({bottom: '-'+ this.current_description[0].offsetHeight +'px'}, this.settings.animation_speed * 2);
  94. };
  95. return {old_image: {left: old_image_left},
  96. new_image: {left: current_left}};
  97. };
  98. function ResizeAnimation(img_container, direction, desc) {
  99. var image_width = img_container.width();
  100. var image_height = img_container.height();
  101. var current_left = parseInt(img_container.css('left'), 10);
  102. var current_top = parseInt(img_container.css('top'), 10);
  103. img_container.css({width: 0, height: 0, top: this.image_wrapper_height / 2, left: this.image_wrapper_width / 2});
  104. return {old_image: {width: 0,
  105. height: 0,
  106. top: this.image_wrapper_height / 2,
  107. left: this.image_wrapper_width / 2},
  108. new_image: {width: image_width,
  109. height: image_height,
  110. top: current_top,
  111. left: current_left}};
  112. };
  113. function FadeAnimation(img_container, direction, desc) {
  114. img_container.css('opacity', 0);
  115. return {old_image: {opacity: 0},
  116. new_image: {opacity: 1}};
  117. };
  118. // Sort of a hack, will clean this up... eventually
  119. function NoneAnimation(img_container, direction, desc) {
  120. img_container.css('opacity', 0);
  121. return {old_image: {opacity: 0},
  122. new_image: {opacity: 1},
  123. speed: 0};
  124. };
  125. function AdGallery(wrapper, settings) {
  126. this.init(wrapper, settings);
  127. };
  128. AdGallery.prototype = {
  129. // Elements
  130. wrapper: false,
  131. image_wrapper: false,
  132. gallery_info: false,
  133. nav: false,
  134. loader: false,
  135. preloads: false,
  136. thumbs_wrapper: false,
  137. scroll_back: false,
  138. scroll_forward: false,
  139. next_link: false,
  140. prev_link: false,
  141. slideshow: false,
  142. image_wrapper_width: 0,
  143. image_wrapper_height: 0,
  144. current_index: 0,
  145. current_image: false,
  146. current_description: false,
  147. nav_display_width: 0,
  148. settings: false,
  149. images: false,
  150. in_transition: false,
  151. animations: false,
  152. init: function(wrapper, settings) {
  153. var context = this;
  154. this.wrapper = $(wrapper);
  155. this.settings = settings;
  156. this.setupElements();
  157. this.setupAnimations();
  158. if(this.settings.width) {
  159. this.image_wrapper_width = this.settings.width;
  160. this.image_wrapper.width(this.settings.width);
  161. this.wrapper.width(this.settings.width);
  162. } else {
  163. this.image_wrapper_width = this.image_wrapper.width();
  164. };
  165. if(this.settings.height) {
  166. this.image_wrapper_height = this.settings.height;
  167. this.image_wrapper.height(this.settings.height);
  168. } else {
  169. this.image_wrapper_height = this.image_wrapper.height();
  170. };
  171. this.nav_display_width = this.nav.width();
  172. this.current_index = 0;
  173. this.current_image = false;
  174. this.current_description = false;
  175. this.in_transition = false;
  176. this.findImages();
  177. if(this.settings.display_next_and_prev) {
  178. this.initNextAndPrev();
  179. };
  180. // The slideshow needs a callback to trigger the next image to be shown
  181. // but we don't want to give it access to the whole gallery instance
  182. var nextimage_callback = function(callback) {
  183. return context.nextImage(callback);
  184. };
  185. this.slideshow = new AdGallerySlideshow(nextimage_callback, this.settings.slideshow);
  186. this.controls.append(this.slideshow.create());
  187. if(this.settings.slideshow.enable) {
  188. this.slideshow.enable();
  189. } else {
  190. this.slideshow.disable();
  191. };
  192. if(this.settings.display_back_and_forward) {
  193. this.initBackAndForward();
  194. };
  195. if(this.settings.enable_keyboard_move) {
  196. this.initKeyEvents();
  197. };
  198. var start_at = parseInt(this.settings.start_at_index, 10);
  199. if(window.location.hash && window.location.hash.indexOf('#ad-image') === 0) {
  200. start_at = window.location.hash.replace(/[^0-9]+/g, '');
  201. // Check if it's a number
  202. if((start_at * 1) != start_at) {
  203. start_at = this.settings.start_at_index;
  204. };
  205. };
  206. this.loading(true);
  207. this.showImage(start_at,
  208. function() {
  209. // We don't want to start the slideshow before the image has been
  210. // displayed
  211. if(context.settings.slideshow.autostart) {
  212. context.preloadImage(start_at + 1);
  213. context.slideshow.start();
  214. };
  215. }
  216. );
  217. this.fireCallback(this.settings.callbacks.init);
  218. },
  219. setupAnimations: function() {
  220. this.animations = {
  221. 'slide-vert': VerticalSlideAnimation,
  222. 'slide-hori': HorizontalSlideAnimation,
  223. 'resize': ResizeAnimation,
  224. 'fade': FadeAnimation,
  225. 'none': NoneAnimation
  226. };
  227. },
  228. setupElements: function() {
  229. this.controls = this.wrapper.find('.ad-controls');
  230. this.gallery_info = $('<p class="ad-info"></p>');
  231. this.controls.append(this.gallery_info);
  232. this.image_wrapper = this.wrapper.find('.ad-image-wrapper');
  233. this.image_wrapper.empty();
  234. this.nav = this.wrapper.find('.ad-nav');
  235. this.thumbs_wrapper = this.nav.find('.ad-thumbs');
  236. this.preloads = $('<div class="ad-preloads"></div>');
  237. this.loader = $('<img class="ad-loader" src="'+ this.settings.loader_image +'">');
  238. this.image_wrapper.append(this.loader);
  239. this.loader.hide();
  240. $(document.body).append(this.preloads);
  241. },
  242. loading: function(bool) {
  243. if(bool) {
  244. this.loader.show();
  245. } else {
  246. this.loader.hide();
  247. };
  248. },
  249. addAnimation: function(name, fn) {
  250. if($.isFunction(fn)) {
  251. this.animations[name] = fn;
  252. };
  253. },
  254. findImages: function() {
  255. var context = this;
  256. this.images = [];
  257. var thumb_wrapper_width = 0;
  258. var thumbs_loaded = 0;
  259. var thumbs = this.thumbs_wrapper.find('a');
  260. var thumb_count = thumbs.length;
  261. if(this.settings.thumb_opacity < 1) {
  262. thumbs.find('img').css('opacity', this.settings.thumb_opacity);
  263. };
  264. thumbs.each(
  265. function(i) {
  266. var link = $(this);
  267. var image_src = link.attr('href');
  268. var thumb = link.find('img');
  269. // Check if the thumb has already loaded
  270. if(!context.isImageLoaded(thumb[0])) {
  271. thumb.load(
  272. function() {
  273. thumb_wrapper_width += this.parentNode.parentNode.offsetWidth;
  274. thumbs_loaded++;
  275. }
  276. );
  277. } else{
  278. thumb_wrapper_width += thumb[0].parentNode.parentNode.offsetWidth;
  279. thumbs_loaded++;
  280. };
  281. link.addClass('ad-thumb'+ i);
  282. link.click(
  283. function() {
  284. context.showImage(i);
  285. context.slideshow.stop();
  286. return false;
  287. }
  288. ).hover(
  289. function() {
  290. if(!$(this).is('.ad-active') && context.settings.thumb_opacity < 1) {
  291. $(this).find('img').fadeTo(300, 1);
  292. };
  293. context.preloadImage(i);
  294. },
  295. function() {
  296. if(!$(this).is('.ad-active') && context.settings.thumb_opacity < 1) {
  297. $(this).find('img').fadeTo(300, context.settings.thumb_opacity);
  298. };
  299. }
  300. );
  301. var link = false;
  302. if(thumb.data('ad-link')) {
  303. link = thumb.data('ad-link');
  304. } else if(thumb.attr('longdesc') && thumb.attr('longdesc').length) {
  305. link = thumb.attr('longdesc');
  306. };
  307. var desc = false;
  308. if(thumb.data('ad-desc')) {
  309. desc = thumb.data('ad-desc');
  310. } else if(thumb.attr('alt') && thumb.attr('alt').length) {
  311. desc = thumb.attr('alt');
  312. };
  313. var title = false;
  314. if(thumb.data('ad-title')) {
  315. title = thumb.data('ad-title');
  316. } else if(thumb.attr('title') && thumb.attr('title').length) {
  317. title = thumb.attr('title');
  318. };
  319. context.images[i] = { thumb: thumb.attr('src'), image: image_src, error: false,
  320. preloaded: false, desc: desc, title: title, size: false,
  321. link: link };
  322. }
  323. );
  324. // Wait until all thumbs are loaded, and then set the width of the ul
  325. var inter = setInterval(
  326. function() {
  327. if(thumb_count == thumbs_loaded) {
  328. thumb_wrapper_width -= 100;
  329. var list = context.nav.find('.ad-thumb-list');
  330. list.css('width', thumb_wrapper_width +'px');
  331. var i = 1;
  332. var last_height = list.height();
  333. while(i < 201) {
  334. list.css('width', (thumb_wrapper_width + i) +'px');
  335. if(last_height != list.height()) {
  336. break;
  337. }
  338. last_height = list.height();
  339. i++;
  340. }
  341. clearInterval(inter);
  342. };
  343. },
  344. 100
  345. );
  346. },
  347. initKeyEvents: function() {
  348. var context = this;
  349. $(document).keydown(
  350. function(e) {
  351. if(e.keyCode == 39) {
  352. // right arrow
  353. context.nextImage();
  354. context.slideshow.stop();
  355. } else if(e.keyCode == 37) {
  356. // left arrow
  357. context.prevImage();
  358. context.slideshow.stop();
  359. };
  360. }
  361. );
  362. },
  363. initNextAndPrev: function() {
  364. this.next_link = $('<div class="ad-next"><div class="ad-next-image"></div></div>');
  365. this.prev_link = $('<div class="ad-prev"><div class="ad-prev-image"></div></div>');
  366. this.image_wrapper.append(this.next_link);
  367. this.image_wrapper.append(this.prev_link);
  368. var context = this;
  369. this.prev_link.add(this.next_link).mouseover(
  370. function(e) {
  371. // IE 6 hides the wrapper div, so we have to set it's width
  372. $(this).css('height', context.image_wrapper_height);
  373. $(this).find('div').show();
  374. }
  375. ).mouseout(
  376. function(e) {
  377. $(this).find('div').hide();
  378. }
  379. ).click(
  380. function() {
  381. if($(this).is('.ad-next')) {
  382. context.nextImage();
  383. context.slideshow.stop();
  384. } else {
  385. context.prevImage();
  386. context.slideshow.stop();
  387. };
  388. }
  389. ).find('div').css('opacity', 0.7);
  390. },
  391. initBackAndForward: function() {
  392. var context = this;
  393. this.scroll_forward = $('<div class="ad-forward"></div>');
  394. this.scroll_back = $('<div class="ad-back"></div>');
  395. this.nav.append(this.scroll_forward);
  396. this.nav.prepend(this.scroll_back);
  397. var has_scrolled = 0;
  398. var thumbs_scroll_interval = false;
  399. $(this.scroll_back).add(this.scroll_forward).click(
  400. function() {
  401. // We don't want to jump the whole width, since an image
  402. // might be cut at the edge
  403. var width = context.nav_display_width - 50;
  404. if(context.settings.scroll_jump > 0) {
  405. var width = context.settings.scroll_jump;
  406. };
  407. if($(this).is('.ad-forward')) {
  408. var left = context.thumbs_wrapper.scrollLeft() + width;
  409. } else {
  410. var left = context.thumbs_wrapper.scrollLeft() - width;
  411. };
  412. if(context.settings.slideshow.stop_on_scroll) {
  413. context.slideshow.stop();
  414. };
  415. context.thumbs_wrapper.animate({scrollLeft: left +'px'});
  416. return false;
  417. }
  418. ).css('opacity', 0.6).hover(
  419. function() {
  420. var direction = 'left';
  421. if($(this).is('.ad-forward')) {
  422. direction = 'right';
  423. };
  424. thumbs_scroll_interval = setInterval(
  425. function() {
  426. has_scrolled++;
  427. // Don't want to stop the slideshow just because we scrolled a pixel or two
  428. if(has_scrolled > 30 && context.settings.slideshow.stop_on_scroll) {
  429. context.slideshow.stop();
  430. };
  431. var left = context.thumbs_wrapper.scrollLeft() + 1;
  432. if(direction == 'left') {
  433. left = context.thumbs_wrapper.scrollLeft() - 1;
  434. };
  435. context.thumbs_wrapper.scrollLeft(left);
  436. },
  437. 10
  438. );
  439. $(this).css('opacity', 1);
  440. },
  441. function() {
  442. has_scrolled = 0;
  443. clearInterval(thumbs_scroll_interval);
  444. $(this).css('opacity', 0.6);
  445. }
  446. );
  447. },
  448. _afterShow: function() {
  449. this.gallery_info.html((this.current_index + 1) +' / '+ this.images.length);
  450. if(!this.settings.cycle) {
  451. // Needed for IE
  452. this.prev_link.show().css('height', this.image_wrapper_height);
  453. this.next_link.show().css('height', this.image_wrapper_height);
  454. if(this.current_index == (this.images.length - 1)) {
  455. this.next_link.hide();
  456. };
  457. if(this.current_index == 0) {
  458. this.prev_link.hide();
  459. };
  460. };
  461. this.fireCallback(this.settings.callbacks.afterImageVisible);
  462. },
  463. /**
  464. * Checks if the image is small enough to fit inside the container
  465. * If it's not, shrink it proportionally
  466. */
  467. _getContainedImageSize: function(image_width, image_height) {
  468. if(image_height > this.image_wrapper_height) {
  469. var ratio = image_width / image_height;
  470. image_height = this.image_wrapper_height;
  471. image_width = this.image_wrapper_height * ratio;
  472. };
  473. if(image_width > this.image_wrapper_width) {
  474. var ratio = image_height / image_width;
  475. image_width = this.image_wrapper_width;
  476. image_height = this.image_wrapper_width * ratio;
  477. };
  478. return {width: image_width, height: image_height};
  479. },
  480. /**
  481. * If the image dimensions are smaller than the wrapper, we position
  482. * it in the middle anyway
  483. */
  484. _centerImage: function(img_container, image_width, image_height) {
  485. img_container.css('top', '0px');
  486. if(image_height < this.image_wrapper_height) {
  487. var dif = this.image_wrapper_height - image_height;
  488. img_container.css('top', (dif / 2) +'px');
  489. };
  490. img_container.css('left', '0px');
  491. if(image_width < this.image_wrapper_width) {
  492. var dif = this.image_wrapper_width - image_width;
  493. img_container.css('left', (dif / 2) +'px');
  494. };
  495. },
  496. _getDescription: function(image) {
  497. var desc = false;
  498. if(image.desc.length || image.title.length) {
  499. var title = '';
  500. if(image.title.length) {
  501. title = '<strong class="ad-description-title">'+ image.title +'</strong>';
  502. };
  503. var desc = '';
  504. if(image.desc.length) {
  505. desc = '<span>'+ image.desc +'</span>';
  506. };
  507. desc = $('<p class="ad-image-description">'+ title + desc +'</p>');
  508. };
  509. return desc;
  510. },
  511. /**
  512. * @param function callback Gets fired when the image has loaded, is displaying
  513. * and it's animation has finished
  514. */
  515. showImage: function(index, callback) {
  516. if(this.images[index] && !this.in_transition) {
  517. var context = this;
  518. var image = this.images[index];
  519. this.in_transition = true;
  520. if(!image.preloaded) {
  521. this.loading(true);
  522. this.preloadImage(index, function() {
  523. context.loading(false);
  524. context._showWhenLoaded(index, callback);
  525. });
  526. } else {
  527. this._showWhenLoaded(index, callback);
  528. };
  529. };
  530. },
  531. /**
  532. * @param function callback Gets fired when the image has loaded, is displaying
  533. * and it's animation has finished
  534. */
  535. _showWhenLoaded: function(index, callback) {
  536. if(this.images[index]) {
  537. var context = this;
  538. var image = this.images[index];
  539. var img_container = $(document.createElement('div')).addClass('ad-image');
  540. var img = $(new Image()).attr('src', image.image);
  541. if(image.link) {
  542. var link = $('<a href="'+ image.link +'" target="_blank"></a>');
  543. link.append(img);
  544. img_container.append(link);
  545. } else {
  546. img_container.append(img);
  547. }
  548. this.image_wrapper.prepend(img_container);
  549. var size = this._getContainedImageSize(image.size.width, image.size.height);
  550. img.attr('width', size.width);
  551. img.attr('height', size.height);
  552. img_container.css({width: size.width +'px', height: size.height +'px'});
  553. this._centerImage(img_container, size.width, size.height);
  554. var desc = this._getDescription(image, img_container);
  555. if(desc) {
  556. if(!this.settings.description_wrapper) {
  557. img_container.append(desc);
  558. var width = size.width - parseInt(desc.css('padding-left'), 10) - parseInt(desc.css('padding-right'), 10);
  559. desc.css('width', width +'px');
  560. } else {
  561. this.settings.description_wrapper.append(desc);
  562. }
  563. };
  564. this.highLightThumb(this.nav.find('.ad-thumb'+ index));
  565. var direction = 'right';
  566. if(this.current_index < index) {
  567. direction = 'left';
  568. };
  569. this.fireCallback(this.settings.callbacks.beforeImageVisible);
  570. if(this.current_image || this.settings.animate_first_image) {
  571. var animation_speed = this.settings.animation_speed;
  572. var easing = 'swing';
  573. var animation = this.animations[this.settings.effect].call(this, img_container, direction, desc);
  574. if(typeof animation.speed != 'undefined') {
  575. animation_speed = animation.speed;
  576. };
  577. if(typeof animation.easing != 'undefined') {
  578. easing = animation.easing;
  579. };
  580. if(this.current_image) {
  581. var old_image = this.current_image;
  582. var old_description = this.current_description;
  583. old_image.animate(animation.old_image, animation_speed, easing,
  584. function() {
  585. old_image.remove();
  586. if(old_description) old_description.remove();
  587. }
  588. );
  589. };
  590. img_container.animate(animation.new_image, animation_speed, easing,
  591. function() {
  592. context.current_index = index;
  593. context.current_image = img_container;
  594. context.current_description = desc;
  595. context.in_transition = false;
  596. context._afterShow();
  597. context.fireCallback(callback);
  598. }
  599. );
  600. } else {
  601. this.current_index = index;
  602. this.current_image = img_container;
  603. context.current_description = desc;
  604. this.in_transition = false;
  605. context._afterShow();
  606. this.fireCallback(callback);
  607. };
  608. };
  609. },
  610. nextIndex: function() {
  611. if(this.current_index == (this.images.length - 1)) {
  612. if(!this.settings.cycle) {
  613. return false;
  614. };
  615. var next = 0;
  616. } else {
  617. var next = this.current_index + 1;
  618. };
  619. return next;
  620. },
  621. nextImage: function(callback) {
  622. var next = this.nextIndex();
  623. if(next === false) return false;
  624. this.preloadImage(next + 1);
  625. this.showImage(next, callback);
  626. return true;
  627. },
  628. prevIndex: function() {
  629. if(this.current_index == 0) {
  630. if(!this.settings.cycle) {
  631. return false;
  632. };
  633. var prev = this.images.length - 1;
  634. } else {
  635. var prev = this.current_index - 1;
  636. };
  637. return prev;
  638. },
  639. prevImage: function(callback) {
  640. var prev = this.prevIndex();
  641. if(prev === false) return false;
  642. this.preloadImage(prev - 1);
  643. this.showImage(prev, callback);
  644. return true;
  645. },
  646. preloadAll: function() {
  647. var context = this;
  648. var i = 0;
  649. function preloadNext() {
  650. if(i < context.images.length) {
  651. i++;
  652. context.preloadImage(i, preloadNext);
  653. };
  654. };
  655. context.preloadImage(i, preloadNext);
  656. },
  657. preloadImage: function(index, callback) {
  658. if(this.images[index]) {
  659. var image = this.images[index];
  660. if(!this.images[index].preloaded) {
  661. var img = $(new Image());
  662. img.attr('src', image.image);
  663. if(!this.isImageLoaded(img[0])) {
  664. this.preloads.append(img);
  665. var context = this;
  666. img.load(
  667. function() {
  668. image.preloaded = true;
  669. image.size = { width: this.width, height: this.height };
  670. context.fireCallback(callback);
  671. }
  672. ).error(
  673. function() {
  674. image.error = true;
  675. image.preloaded = false;
  676. image.size = false;
  677. }
  678. );
  679. } else {
  680. image.preloaded = true;
  681. image.size = { width: img[0].width, height: img[0].height };
  682. this.fireCallback(callback);
  683. };
  684. } else {
  685. this.fireCallback(callback);
  686. };
  687. };
  688. },
  689. isImageLoaded: function(img) {
  690. if(typeof img.complete != 'undefined' && !img.complete) {
  691. return false;
  692. };
  693. if(typeof img.naturalWidth != 'undefined' && img.naturalWidth == 0) {
  694. return false;
  695. };
  696. return true;
  697. },
  698. highLightThumb: function(thumb) {
  699. this.thumbs_wrapper.find('.ad-active').removeClass('ad-active');
  700. thumb.addClass('ad-active');
  701. if(this.settings.thumb_opacity < 1) {
  702. this.thumbs_wrapper.find('a:not(.ad-active) img').fadeTo(300, this.settings.thumb_opacity);
  703. thumb.find('img').fadeTo(300, 1);
  704. };
  705. var left = thumb[0].parentNode.offsetLeft;
  706. left -= (this.nav_display_width / 2) - (thumb[0].offsetWidth / 2);
  707. this.thumbs_wrapper.animate({scrollLeft: left +'px'});
  708. },
  709. fireCallback: function(fn) {
  710. if($.isFunction(fn)) {
  711. fn.call(this);
  712. };
  713. }
  714. };
  715. function AdGallerySlideshow(nextimage_callback, settings) {
  716. this.init(nextimage_callback, settings);
  717. };
  718. AdGallerySlideshow.prototype = {
  719. start_link: false,
  720. stop_link: false,
  721. countdown: false,
  722. controls: false,
  723. settings: false,
  724. nextimage_callback: false,
  725. enabled: false,
  726. running: false,
  727. countdown_interval: false,
  728. init: function(nextimage_callback, settings) {
  729. var context = this;
  730. this.nextimage_callback = nextimage_callback;
  731. this.settings = settings;
  732. },
  733. create: function() {
  734. this.start_link = $('<span class="ad-slideshow-start">'+ this.settings.start_label +'</span>');
  735. this.stop_link = $('<span class="ad-slideshow-stop">'+ this.settings.stop_label +'</span>');
  736. this.countdown = $('<span class="ad-slideshow-countdown"></span>');
  737. this.controls = $('<div class="ad-slideshow-controls"></div>');
  738. this.controls.append(this.start_link).append(this.stop_link).append(this.countdown);
  739. this.countdown.hide();
  740. var context = this;
  741. this.start_link.click(
  742. function() {
  743. context.start();
  744. }
  745. );
  746. this.stop_link.click(
  747. function() {
  748. context.stop();
  749. }
  750. );
  751. $(document).keydown(
  752. function(e) {
  753. if(e.keyCode == 83) {
  754. // 's'
  755. if(context.running) {
  756. context.stop();
  757. } else {
  758. context.start();
  759. };
  760. };
  761. }
  762. );
  763. return this.controls;
  764. },
  765. disable: function() {
  766. this.enabled = false;
  767. this.stop();
  768. this.controls.hide();
  769. },
  770. enable: function() {
  771. this.enabled = true;
  772. this.controls.show();
  773. },
  774. toggle: function() {
  775. if(this.enabled) {
  776. this.disable();
  777. } else {
  778. this.enable();
  779. };
  780. },
  781. start: function() {
  782. if(this.running || !this.enabled) return false;
  783. var context = this;
  784. this.running = true;
  785. this.controls.addClass('ad-slideshow-running');
  786. this._next();
  787. this.fireCallback(this.settings.onStart);
  788. return true;
  789. },
  790. stop: function() {
  791. if(!this.running) return false;
  792. this.running = false;
  793. this.countdown.hide();
  794. this.controls.removeClass('ad-slideshow-running');
  795. clearInterval(this.countdown_interval);
  796. this.fireCallback(this.settings.onStop);
  797. return true;
  798. },
  799. _next: function() {
  800. var context = this;
  801. var pre = this.settings.countdown_prefix;
  802. var su = this.settings.countdown_sufix;
  803. clearInterval(context.countdown_interval);
  804. this.countdown.show().html(pre + (this.settings.speed / 1000) + su);
  805. var slide_timer = 0;
  806. this.countdown_interval = setInterval(
  807. function() {
  808. slide_timer += 1000;
  809. if(slide_timer >= context.settings.speed) {
  810. var whenNextIsShown = function() {
  811. // A check so the user hasn't stoped the slideshow during the
  812. // animation
  813. if(context.running) {
  814. context._next();
  815. };
  816. slide_timer = 0;
  817. };
  818. if(!context.nextimage_callback(whenNextIsShown)) {
  819. context.stop();
  820. };
  821. slide_timer = 0;
  822. };
  823. var sec = parseInt(context.countdown.text().replace(/[^0-9]/g, ''), 10);
  824. sec--;
  825. if(sec > 0) {
  826. context.countdown.html(pre + sec + su);
  827. };
  828. },
  829. 1000
  830. );
  831. },
  832. fireCallback: function(fn) {
  833. if($.isFunction(fn)) {
  834. fn.call(this);
  835. };
  836. }
  837. };
  838. })(jQuery);