Skip to content

Kritten/simple-bootstrap-gallery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

simple-bootstrap-gallery

DEMO

The main idea behind this library is to create an easy to integrate and easy to use gallery.
Most of the configuration of the library can be done without any javascript via html data attributes

Features

  • dynamic device specific navigation:

    Device open lightbox previous image next image close lightbox
    desktop click on image left arrow key,
    page up,
    click on left arrow
    right arrow key,
    page down,
    click on right arrow
    escape key,
    click outside of lightbox,
    click on closing symbol
    mobile touch on image swipe to right swipe to right touch anywhere
  • multiple different, seperated galleries on the same page

  • support for optional thumbnails

  • every necessary html, css and javascript code is contained within the script

Prerequisites

  • Bootstrap 4
  • jQuery (any more or less recent version is sufficient, but do not use the slim version)

Browser support

Tested with the following browser versions (other browsers or versions will most probably also work):

  • Chrome 62+
  • Firefox 57+
  • Opera 49+
  • Microsoft Edge 41+
  • Internet Explorer 9, 11

Quickstart

  1. Include the script into your webpage:
<script src="sbg.min.js"></script>
  1. Add the class 'sbg-image' to your images:
<img src="image.jpg" class="sbg-image">
  1. Thats it!

Usage

Available files

  • js/
    • sbg_dev.js - development version
    • sbg.min.js - production version (minified, transpiled to es2015)

Thumbnails

Use the src attribute of the image tag to display your thumbnails. The high resolution image can be specified with the data-sbg-src attribute:

<img src="thumbnail.jpg" data-sbg-src="image.jpg" class="sbg-image">

Multiple galleries

You can use the data-sbg-gallery attribute to separate the images into different galleries.
Every image with the same data-sbg-gallery value is assigned to the same virtual gallery.
If the data-sbg-gallery attribute is not specified the image is assigned to the sbg-default gallery.

The following example creates three different galleries ('a', 'b' and 'sbg-default'):

<img src="thumbnail1.jpg" data-sbg-src="image1.jpg" data-sbg-gallery="a" class="sbg-image">
<img src="thumbnail2.jpg" data-sbg-src="image2.jpg" data-sbg-gallery="a" class="sbg-image">
<img src="thumbnail3.jpg" data-sbg-src="image3.jpg" data-sbg-gallery="b" class="sbg-image">
<img src="thumbnail4.jpg" data-sbg-src="image4.jpg" data-sbg-gallery="b" class="sbg-image">
<img src="thumbnail5.jpg" data-sbg-src="image5.jpg" class="sbg-image">

Custom settings

The library allows the user to adjust the settings for all the galleries or for specific galleries only.
It is also possible to first adjust the settings for all galleries and then to override some of these settings for specific galleries.

To change all or some settings for all galleries on your page simply create the variable sbg_settings before you include the library.
The variable is a javascript object with the names of the galleries as properties and

<script>
	var sbg_settings = {
		'sbg-default': {
			'transition_speed': 1000 
		}
	}
</script
<script src="sbg.min.js"></script>

You are able to adjust the following settings: setting | default | description ---|--- transition_speed | 200 | The transition speed between two images.

Releases

No releases published

Packages

No packages published