Podstawowy zoom. Refs #32.
authorzuber <marek@stepniowski.com>
Mon, 31 Aug 2009 15:12:50 +0000 (17:12 +0200)
committerzuber <marek@stepniowski.com>
Mon, 31 Aug 2009 15:12:50 +0000 (17:12 +0200)
project/templates/explorer/panels/gallery.html

index af3a5cb..565a636 100644 (file)
@@ -14,7 +14,19 @@ panel_hooks = {
             var select = this;
             $('.images', contentDiv).fadeOut('slow', function() { 
                 $(this).html('').load('{% url folder_image_ajax %}' + $(select).val() + '/',  function() {
+                    $('.images', contentDiv).fadeIn('slow');
                     $('.images-wrap', contentDiv).data('lazyload:lastCheckedScrollTop', -10000);
+                    $('.image-box').click(function() {
+                        var src = $('img', $(this)).attr('src');
+                        var idx = src.lastIndexOf('/');
+                        var bigSrc = src.substring(0, idx) + '/big' + src.substring(idx, src.length);
+                        var zoom = $('<div style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: scroll">'
+                            + '<img src="' + bigSrc + '" />'
+                            + '</div>').click(function() {
+                                $(this).remove();
+                            })
+                        zoom.appendTo(contentDiv);
+                    });
                 });
             })
         });