Quick Gallery
is a simple image gallery written in PHP with some JS, HTML5 & CSS3 for front-end. Gallery is creating automatically from a folder of images. You can use it to create your own gallery or add it to your projects really fast
- easy to implement
- fully responsive
- animated hover effects
- animated gallery entrance
- image preview popup with zoom in/out animation
- Copy required files
gallery.css
,gallery.js
,quick-gallery.php
from/dist
directory to your project - Include the stylesheets on your document's
<head>
<head>
<!-- Gallery styles -->
<link rel="stylesheet" href="gallery.css">
<!-- Font Awesome - for search icon on hover -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
- Include
jQuery
andgallery.js
at the end of your document, just before</body>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<!-- Gallery JS script -->
<script src="gallery.js"></script>
- Create
/uploads
directory and put some images. You can change default directory inquick-gallery.php
at line 3 - Add gallery to your project
<?php include 'quick-gallery.php'; ?>
http://github.dawidgorecki.pl/quickgallery
Quick Gallery is licensed under the MIT license. (http://opensource.org/licenses/MIT)