Still Photo Gallery » Sexy photo galleries made simple

 

Still is a photo gallery for web pages written in Javascript. It does not use external Javascript libraries and can be installed alone on your website and still work. The backend requires PHP, but you could write your own. It seeks to automate the process of displaying a photo gallery on a website as much as possible.

why did you write Still?

A lot of the available Javascript photo galleries require some third-party library to function. Since most of the time I don't use JS libraries, I am unable to use nifty photo galleries.

Still is currently in a POC/Alpha stage, but it aims to be the sexiest Javascript photo gallery around.

why should you use Still?

Still is being actively developed and I am open to suggestions on where to take the project. It is simple to use, easy to install, and has a tiny footprint.

It takes away the work typically associated with setting up a photo gallery.

 

getting started

  1. Create a sub-directory in the photos directory and copy some images into it
  2. Include the following code into your web page...

    At the very top of your page:
    
    <?php
    require("path-to/Still.php");
    $S = new Still;
    ?>

    In the <head> of your page:
    
    <?php
    $S
    ->head();
    ?>
    Somewhere inside your page, where you want your gallery to appear:
    
    <?php
    $S
    ->gallery();
    ?>
  3. Run the page. You can now configure the gallery.

Be sure that PHP has access to write/read both the photos and db directories.

download

Still is currently available free of charge for non-commercial use. » Download

Written by Cory Mawhorter