NASA Gallery

Status
Not open for further replies.
That's a neat gallery! I haven't seen that one before! I'd be tempted to say NASA have probably got the money to have a gallery custom-designed.
 
Seems to be a custom-made gallery. I can tell you that it's powered by Javascript (presumably Ajax), not Flash, and that it all happens here:

Code:
<div xmlns:java_code=xalan://gov.nasa.build.Utils2" class="image_gallery_normal" id="image_gallery">
<form id="subDivForm">
<div id="sub"></div>
</form>
<div id="gallery_thumbgrid">
<div id="gallery_thumbgrid_ranges"></div>
<div id="gallery_thumbgrid_close">
<a href="#">Close</a>
</div>
<div id="gallery_thumbgrid_grid"></div>
</div>
<div id="gallery_image_area"></div>
<div id="gallery_toolbar">
[url=""#""]Full Screen[/url][url=""#""]Slide Show[/url][url=""#""]View Thumbnails[/url]

</div>
<div id="download_image_box">
<h3>Download Image</h3>
</div>
<div id="caption_region">
<div class="caption_inner large_gray_scroll">
<h3></h3>


</p>
</div>
</div>
<div id="image_stack"></div>
</div>
<script xmlns:java_code="xalan://gov.nasa.build.Utils2" type="text/javascript" language="javascript"> 

    new Ajax.Request('/multimedia/imagegallery/iotdxml.xml',
    {
        method:'get',
        onSuccess: function(transport)
        {        
            //alert("transport responseXML = "+transport.responseXML);
            processRSS(transport.responseXML);                         
            new ImageGallery();                                        
        },
        onFailure: function()
        { 
            alert('Unable to Retrieve Source file ...') 
        }
      }
      );
</script>

It gets images from an RSS file, [URL="http://www.nasa.gov//multimedia/imagegallery/iotdxml.xml]located here[/URL].
 
Haha. No, I'm not going to go ripping off NASA for the sake of yet another template. I have too many other things to do, and lately I'm liking my sleep. ;)
 
THX for quick reply
 
Status
Not open for further replies.
Back
Top