Lightbox: печать выводимой картинки

Тема в разделе "Интерактивные возможности", создана пользователем Roomex, 07.06.2008.

  1. Offline

    Roomex Недавно здесь

    Регистрация:
    13.03.2008
    Сообщения:
    7
    Симпатии:
    0
    Здравствуйте. Поставил на сайт Lightbox.

    Задача - дать возможность распечатать выводимую Lightbox'ом картинку (схема проезда). Затруднение связано с тем, что в Lightbox картинка выводится в теге background вот в этом коде:


    Варианта, как я понял, два:

    1. Не использовать Lightbox для схем проезда :)

    2. Изменить в скрипте Lightbox'а (ниже) вывод картинки не в бэкграунд, а как есть. Вот только сам не впишу этот тег, т.к. яву не знаю =(

    Для тех, кто использует Lightbox - вещь, как мне кажется, достаточно нужная...

    Прошу помощи :[

    Код (CODE):
    1. var Lightbox = {
    2.  
    3.     init: function(options){
    4.         this.options = $extend({
    5.             resizeDuration: 400,
    6.             resizeTransition: false,    // default transition
    7.             initialWidth: 250,
    8.             initialHeight: 250,
    9.             animateCaption: true,
    10.             showCounter: true
    11.         }, options || {});
    12.  
    13.         this.anchors = [];
    14.         $each(document.links, function(el){
    15.             if (el.rel && el.rel.test(/^lightbox/i)){
    16.                 el.onclick = this.click.pass(el, this);
    17.                 this.anchors.push(el);
    18.             }
    19.         }, this);
    20.         this.eventKeyDown = this.keyboardListener.bindAsEventListener(this);
    21.         this.eventPosition = this.position.bind(this);
    22.  
    23.         this.overlay = new Element('div', {'id': 'lbOverlay'}).injectInside(document.body);
    24.  
    25.         this.center = new Element('div', {'id': 'lbCenter', 'styles': {'width': this.options.initialWidth, 'height': this.options.initialHeight, 'marginLeft': -(this.options.initialWidth/2), 'display': 'none'}}).injectInside(document.body);
    26.         this.image = new Element('div', {'id': 'lbImage'}).injectInside(this.center);
    27.         this.prevLink = new Element('a', {'id': 'lbPrevLink', 'href': '#', 'styles': {'display': 'none'}}).injectInside(this.image);
    28.         this.nextLink = this.prevLink.clone().setProperty('id', 'lbNextLink').injectInside(this.image);
    29.         this.prevLink.onclick = this.previous.bind(this);
    30.         this.nextLink.onclick = this.next.bind(this);
    31.  
    32.         this.bottomContainer = new Element('div', {'id': 'lbBottomContainer', 'styles': {'display': 'none'}}).injectInside(document.body);
    33.         this.bottom = new Element('div', {'id': 'lbBottom'}).injectInside(this.bottomContainer);
    34.         new Element('a', {'id': 'lbCloseLink', 'href': '#'}).injectInside(this.bottom).onclick = this.overlay.onclick = this.close.bind(this);
    35.         this.caption = new Element('div', {'id': 'lbCaption'}).injectInside(this.bottom);
    36.         this.number = new Element('div', {'id': 'lbNumber'}).injectInside(this.bottom);
    37.         new Element('div', {'styles': {'clear': 'both'}}).injectInside(this.bottom);
    38.  
    39.         var nextEffect = this.nextEffect.bind(this);
    40.         this.fx = {
    41.             overlay: this.overlay.effect('opacity', {duration: 500}).hide(),
    42.             resize: this.center.effects($extend({duration: this.options.resizeDuration, onComplete: nextEffect}, this.options.resizeTransition ? {transition: this.options.resizeTransition} : {})),
    43.             image: this.image.effect('opacity', {duration: 500, onComplete: nextEffect}),
    44.             bottom: this.bottom.effect('margin-top', {duration: 400, onComplete: nextEffect})
    45.         };
    46.  
    47.         this.preloadPrev = new Image();
    48.         this.preloadNext = new Image();
    49.     },
    50.  
    51.     click: function(link){
    52.         if (link.rel.length == 8) return this.show(link.href, link.title);
    53.  
    54.         var j, imageNum, images = [];
    55.         this.anchors.each(function(el){
    56.             if (el.rel == link.rel){
    57.                 for (j = 0; j < images.length; j++) if(images[j][0] == el.href) break;
    58.                 if (j == images.length){
    59.                     images.push([el.href, el.title]);
    60.                     if (el.href == link.href) imageNum = j;
    61.                 }
    62.             }
    63.         }, this);
    64.         return this.open(images, imageNum);
    65.     },
    66.  
    67.     show: function(url, title){
    68.         return this.open([[url, title]], 0);
    69.     },
    70.  
    71.     open: function(images, imageNum){
    72.         this.images = images;
    73.         this.position();
    74.         this.setup(true);
    75.         this.top = window.getScrollTop() + (window.getHeight() / 15);
    76.         this.center.setStyles({top: this.top, display: ''});
    77.         this.fx.overlay.start(0.8);
    78.         return this.changeImage(imageNum);
    79.     },
    80.  
    81.     position: function(){
    82.         this.overlay.setStyles({'top': window.getScrollTop(), 'height': window.getHeight()});
    83.     },
    84.  
    85.     setup: function(open){
    86.         var elements = $A(document.getElementsByTagName('object'));
    87.         elements.extend(document.getElementsByTagName(window.ie ? 'select' : 'embed'));
    88.         elements.each(function(el){
    89.             if (open) el.lbBackupStyle = el.style.visibility;
    90.             el.style.visibility = open ? 'hidden' : el.lbBackupStyle;
    91.         });
    92.         var fn = open ? 'addEvent' : 'removeEvent';
    93.         window[fn]('scroll', this.eventPosition)[fn]('resize', this.eventPosition);
    94.         document[fn]('keydown', this.eventKeyDown);
    95.         this.step = 0;
    96.     },
    97.  
    98.     keyboardListener: function(event){
    99.         switch (event.keyCode){
    100.             case 27: case 88: case 67: this.close(); break;
    101.             case 37: case 80: this.previous(); break;  
    102.             case 39: case 78: this.next();
    103.         }
    104.     },
    105.  
    106.     previous: function(){
    107.         return this.changeImage(this.activeImage-1);
    108.     },
    109.  
    110.     next: function(){
    111.         return this.changeImage(this.activeImage+1);
    112.     },
    113.  
    114.     changeImage: function(imageNum){
    115.         if (this.step || (imageNum < 0) || (imageNum >= this.images.length)) return false;
    116.         this.step = 1;
    117.         this.activeImage = imageNum;
    118.  
    119.         this.center.style.backgroundColor = '';
    120.         this.bottomContainer.style.display = this.prevLink.style.display = this.nextLink.style.display = 'none';
    121.         this.fx.image.hide();
    122.         this.center.className = 'lbLoading';
    123.  
    124.         this.preload = new Image();
    125.         this.preload.onload = this.nextEffect.bind(this);
    126.         this.preload.src = this.images[imageNum][0];
    127.         return false;
    128.     },
    129.  
    130.     nextEffect: function(){
    131.         switch (this.step++){
    132.         case 1:
    133.             this.center.className = '';
    134.             this.image.style.backgroundImage = 'url('+this.images[this.activeImage][0]+')';
    135.             this.image.style.width = this.bottom.style.width = this.preload.width+'px';
    136.             this.image.style.height = this.prevLink.style.height = this.nextLink.style.height = this.preload.height+'px';
    137.  
    138.             this.caption.setHTML(this.images[this.activeImage][1] || '');
    139.             this.number.setHTML((!this.options.showCounter || (this.images.length == 1)) ? '' : 'Image '+(this.activeImage+1)+' of '+this.images.length);
    140.  
    141.             if (this.activeImage) this.preloadPrev.src = this.images[this.activeImage-1][0];
    142.             if (this.activeImage != (this.images.length - 1)) this.preloadNext.src = this.images[this.activeImage+1][0];
    143.             if (this.center.clientHeight != this.image.offsetHeight){
    144.                 this.fx.resize.start({height: this.image.offsetHeight});
    145.                 break;
    146.             }
    147.             this.step++;
    148.         case 2:
    149.             if (this.center.clientWidth != this.image.offsetWidth){
    150.                 this.fx.resize.start({width: this.image.offsetWidth, marginLeft: -this.image.offsetWidth/2});
    151.                 break;
    152.             }
    153.             this.step++;
    154.         case 3:
    155.             this.bottomContainer.setStyles({top: this.top + this.center.clientHeight, height: 0, marginLeft: this.center.style.marginLeft, display: ''});
    156.             this.fx.image.start(1);
    157.             break;
    158.         case 4:
    159.             this.center.style.backgroundColor = '#000';
    160.             if (this.options.animateCaption){
    161.                 this.fx.bottom.set(-this.bottom.offsetHeight);
    162.                 this.bottomContainer.style.height = '';
    163.                 this.fx.bottom.start(0);
    164.                 break;
    165.             }
    166.             this.bottomContainer.style.height = '';
    167.         case 5:
    168.             if (this.activeImage) this.prevLink.style.display = '';
    169.             if (this.activeImage != (this.images.length - 1)) this.nextLink.style.display = '';
    170.             this.step = 0;
    171.         }
    172.     },
    173.  
    174.     close: function(){
    175.         if (this.step < 0) return;
    176.         this.step = -1;
    177.         if (this.preload){
    178.             this.preload.onload = Class.empty;
    179.             this.preload = null;
    180.         }
    181.         for (var f in this.fx) this.fx[f].stop();
    182.         this.center.style.display = this.bottomContainer.style.display = 'none';
    183.         this.fx.overlay.chain(this.setup.pass(false, this)).start(0);
    184.         return false;
    185.     }
    186. };
     
  2.  

Поделиться этой страницей

Загрузка...