Image carousel

2024-10-09 2024-10-09
* Moved position marked down

2024-10-08
* Refactoring made to carousel images
* Fixed full size image
* Prettified the position marker

2024-10-02
* Swiping up or down to close image carousel
* Added clickable bottom image position bullets
* Added touch-sensitive navigation symbols

2024-10-01
==========
* Centered close X
* Centered image text
* Added swipe mechanism

2024-09-24
==========
* Fixed text and symbol bug for quick browsing
* Added code and CSS to this page

2024-09-23
==========
* Initial version

Realizing most people were just browsing the craft articles on my site I wanted to enable them to browse the images with their alt texts so they could see the images and get an understanding of the what's on the page. For those who were really interrested they could still read the whole article.

Implemented features

The following acceptance criterias were formulated:

Backlog

Try it out

Click any of the images below to try the image carousel out.

Image one Image two Image three

Usage

Include the following files:

Javascript class file for all functionality.
CSS file for styling.

Include references to this file and the CSS file in the HEAD section of your HTML, like below:


<head>
    <script type="text/javascript" src="imageCarousel.js"></script>
    <link rel="stylesheet" href="imageCarousel.css">
</head>
            

Then make sure to load an instance of the image carousel itself, for example by including it in window.onload, or:


<body onload="new ImageCarousel('.test-image');">
            

The argument string is the CSS locator for the images to include in the image carousel.

If you want the image carousel to display full size images of the thumbnails on the actual page you may also include a path to full size images.


<body onload="new ImageCarousel('.test-image', './fullsizeimages/');">