- HTML5 Slideshow Maker
- Plenty of HTML5 Templates
- All Browsers Compatible
- See what our users say about HTML5 Slideshow Maker.
- How TO — Slideshow
- Slideshow / Carousel
- Create A Slideshow
- Example
- Example
- Example
- Automatic Slideshow
- Example
- Multiple Slideshows
- Example
- 6 Cool HTML5 Slideshow Maker – Create and Share Stunning Slideshow on Mobile
- Part 1: 6 Cool HTML5 Slideshow Makers
- 1. Focusky — Strongly Recommended
- 2.Hi Slider
- 3.SmartSHOW
- 4.HTML5 Slideshow Maker
- 5. Kizoa
- 6.Wondershare
- Part 2: Engaging HTML5 Slideshow Presentation Made by Focusky
- 28 CSS Slideshows
- Table Of Contents
- Related Articles
- Vertical Slideshows
- Author
- Links
- Made with
- About a code
- Doggie Screensaver
- Author
- Links
- Made with
- About a code
- CSS Slideshow
- Author
- Links
- Made with
- About the code
- Slideshow Vanilla JS
- Author
- Links
- Made with
- About the code
- Untitled Slider
- Author
- Links
- Made with
- About the code
- Parallax Slideshow
- Split Slick Slideshow
- Slideshow Presentation
- Dual Slideshow
- A Pure CSS3 Slideshow
- Horizontal Slideshows
- Author
- Links
- Made with
- About the code
- CSS-only Slideshow
- Author
- Links
- Made with
- About the code
- Rotating Background Image Slideshow
- Author
- Links
- Made with
- About the code
- Slideshow with HTML/CSS
- Author
- Links
- Made with
- About the code
- Spooky Scary Clip Text
- Author
- Links
- Made with
- About the code
- Slideshow Concept
- Author
- Links
- Made with
- About the code
- Silhouette Zoom Slideshow
- Author
- Links
- Made with
- About the code
- Geometrical Birds — Slideshow
- Author
- Links
- Made with
- About the code
- Bubble Slideshow Component
- Author
- Links
- Made with
- About the code
- Slideshow Parallax
- Split-Screen Slideshow
- Only CSS Slideshow Effect
- Slick Slideshow With Blur Effect
- CSS Fadeshow
- Author
HTML5 Slideshow Maker
Creating photo slideshows with HTML5 Slideshow Maker doesn’t need any technical skills. This HTML5 application has an intuitive interface and navigation that can guide you to take the three simple steps: organize photos, choose HTML5 templates and publish photo slideshows. The default settings in this HTML5 application can help you make a stunning photo slideshow in minutes. And the flexible customize settings allow you to customize your photo slideshow freely.
Plenty of HTML5 Templates
HTML5 Slideshow Maker has lots of cool built-in HTML5 templates, which makes the process of making a photo slideshow with this HTML5 application become very easy. All the HTML5 templates in this handy HTML5 application are customizable. You can always make a photo slideshow with your favorite HTML5 template. Besides, this HTML5 application also offers dozens of classic and modern transition effects for making your HTML5 photo slideshow more impressive.
All Browsers Compatible
The HTML5 photo slideshows powered by HTML5 Slideshow Maker are compatible with all the latest version of browsers, including Safari, IE9, Firefox, Google Chrome, Opera. Therefore, after you share your HTML5 photo slideshow on the Internet, you can use iOS devices like iPhone, iPad, Android devices like Samsung mobile phones, Samsung tablets, HTC mobile phones, Windows mobile phones and Google Nexus series to view your HTML5 photo slideshow.
See what our users say about HTML5 Slideshow Maker.
“I bought this app to create a slideshow for my website that could be seen on all devices (so no flash…) and I wanted people to be able to click on each slide. This app does exactly that! It’s easy to make your slideshow, it uploads quickly to the online album and then you get a code to embed it into your website. At first I couldn’t get this to work, so I emailed Anvsoft (on Friday) and they replied Monday morning with the solution (I am still using iWeb). I had another thing I wasn’t sure of (I am a drag-and-drop person not an expert web-designer!) and again they sent a solution very quickly. My website now does what I wanted it to! I can’t get it to import TIFF files, although it says it should, but it imports JPEGs and PNGs. The customisable options are easy to adjust and there are a reasonable amount of HTML5 themes to choose from. Most importantly it seems to work on all platforms. I was looking for a way to do this for ages, and the other options I found were all a lot more expensive, so I really would recommend this as a good value way to get a reliable, clickable slideshow in your website. ” — FootieGirl1824
«This slideshow maker is very specially designed. And it’s simple to use. The great thing is to share the HTML5 slideshow with my friends. Hope you can add more effects for the templates.» — Anonymous
How TO — Slideshow
Learn how to create a responsive slideshow with CSS and JavaScript.
Slideshow / Carousel
A slideshow is used to cycle through elements:
Create A Slideshow
Step 1) Add HTML:
Example
!-->
Step 2) Add CSS:
Style the next and previous buttons, the caption text and the dots:
Example
/* Slideshow container */
.slideshow-container max-width: 1000px;
position: relative;
margin: auto;
>
/* Hide the images by default */
.mySlides display: none;
>
/* Next & previous buttons */
.prev, .next cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
>
/* Position the «next button» to the right */
.next right: 0;
border-radius: 3px 0 0 3px;
>
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover background-color: rgba(0,0,0,0.8);
>
/* Caption text */
.text color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
>
/* Number text (1/3 etc) */
.numbertext color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
>
/* The dots/bullets/indicators */
.dot cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
>
.active, .dot:hover background-color: #717171;
>
/* Fading animation */
.fade animation-name: fade;
animation-duration: 1.5s;
>
Step 3) Add JavaScript:
Example
let slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) showSlides(slideIndex += n);
>
// Thumbnail image controls
function currentSlide(n) showSlides(slideIndex = n);
>
function showSlides(n) let i;
let slides = document.getElementsByClassName(«mySlides»);
let dots = document.getElementsByClassName(«dot»);
if (n > slides.length)
if (n < 1)
for (i = 0; i < slides.length; i++) slides[i].style.display = "none";
>
for (i = 0; i < dots.length; i++) dots[i].className = dots[i].className.replace(" active", "");
>
slides[slideIndex-1].style.display = «block»;
dots[slideIndex-1].className += » active»;
>
Automatic Slideshow
To display an automatic slideshow, use the following code:
Example
let slideIndex = 0;
showSlides();
function showSlides() let i;
let slides = document.getElementsByClassName(«mySlides»);
for (i = 0; i < slides.length; i++) slides[i].style.display = "none";
>
slideIndex++;
if (slideIndex > slides.length)
slides[slideIndex-1].style.display = «block»;
setTimeout(showSlides, 2000); // Change image every 2 seconds
>
Multiple Slideshows
Example
let slideIndex = [1,1];
/* Class the members of each slideshow group with different CSS classes */
let slideId = [«mySlides1», «mySlides2»]
showSlides(1, 0);
showSlides(1, 1);
function plusSlides(n, no) showSlides(slideIndex[no] += n, no);
>
function showSlides(n, no) let i;
let x = document.getElementsByClassName(slideId[no]);
if (n > x.length)
if (n < 1)
for (i = 0; i < x.length; i++) x[i].style.display = "none";
>
x[slideIndex[no]-1].style.display = «block»;
>
6 Cool HTML5 Slideshow Maker – Create and Share Stunning Slideshow on Mobile
The slideshow has become one of the great ways to present ideas to audiences. There are tons of slideshow makers at present, and even the HTML5 slideshow maker has been more and more popular. It is difficult to choose one in hundred. Below are 6 amazing HTML5 slideshow makers available for you.
Part 1: 6 Cool HTML5 Slideshow Makers
1. Focusky — Strongly Recommended
Focusky is an amazing HTML5 slideshow maker for all of you. What you get is not only the slide-to-slide presentation but also an animated video presentation.
Start Making Stunning Slideshow with Focusky
3D Transition Effect
Use the stunning presentation with 3D transition effect to wow your audiences immediately. Different from the traditional slide-to-slide mode, you can present your slideshow presentation in a brilliant way. In sum, there are 3 kinds of transition effects for you to choose from, zooming, panning and rotating. Easily bring the visual enjoyment to your audiences.
Slideshow, Videos, and Animation
You can definitely insert slideshows into your presentation. Create photo galleries in your presentation. Besides, there are 8 kinds of slideshow effects, satisfying all your requirements. Videos and music inserted into to polish the presentation and give a better description for your theme. All these three multimedia together make your presentation much more informative and attractive.
Ready for Mobile Devices
Focusky allows its users watch, access and present the HTML5 presentation on mobile devices like pads, phones, and tablets. With this function, everyone can present and share their presentation anywhere and anytime.
2.Hi Slider
Hi Slider offers you a free HTML5 slideshow maker to create a photo slideshow with only several seconds. You can make the slideshow with image and video. In addition, without using any codes, you can insert the slideshow into your website easily. Actually, you can customize the transition effects according to your own requirements.
3.SmartSHOW
SmartSHOW is a smart slideshow maker giving solution for creating animated slideshow. It helps to easily turn the ordinary photos into thrilling photo movies. Abundant backgrounds and themes by professional designers and active motion pack your slideshow with a stunning appearance.
4.HTML5 Slideshow Maker
Just as its name, this maker is designed to make HTML5 slideshow. You can easily apply the cool over 60 kinds of transition effects and HTML5 templates to polish your slideshow. You are allowed to insert an unlimited number of pictures into the slideshow. Besides, add hyperlinks, description for your photos.
5. Kizoa
This is an online slideshow maker for everyone. There are 7 different formats for the slideshow so that you can adapt your creation to any screen or platform such as a TV, computer screen, smartphone, or tablet. Choose from hundreds of different effects, text, and animations to add to your photos and videos.
6.Wondershare
Combine the photos, videos, and music into a slideshow. Wondershare allows you create a stunning DVD slideshow. You can apply the pre-designed movie theme to embellish your slideshow. There are 480+ styles available for you. Free yourself to use them for your slideshow.
Part 2: Engaging HTML5 Slideshow Presentation Made by Focusky
Start Making Stunning Slideshow with Focusky
28 CSS Slideshows
Collection of free HTML and CSS slideshow code: simple, responsive, animated, horizontal, vertical, etc. Update of March 2019 collection. 4 new example.
Table Of Contents
Related Articles
Vertical Slideshows
Author
Links
Made with
About a code
Doggie Screensaver
Pretty hacky attempt at recreating the floating screensaver for the photo gallery.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About a code
CSS Slideshow
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Slideshow Vanilla JS
Custom slideshow with staggered transitions. Built in vanilla JS.
Author
Links
Made with
About the code
Untitled Slider
A small experiment which quickly turned into something more.
Author
Links
Made with
About the code
Parallax Slideshow
HTML, CSS and JS slideshow with parallax effect.
Split Slick Slideshow
Vertical slideshow in split screen.
Made by Fabio Ottaviani
March 29, 2017
Slideshow Presentation
Navigate using the up and down arrow keys.
Made by Keith Driessen
March 9, 2016
Dual Slideshow
Just playing around with a dual pane slideshow concept.
Made by Jacob Davidson
April 17, 2015
A Pure CSS3 Slideshow
The transition treats each part of the photo as a blind, closes them all together, and when they are open again, a new photo is revealed underneath.
Made by Stathis
October 3, 2013
Horizontal Slideshows
Author
Links
Made with
About the code
CSS-only Slideshow
An idea for a page header slideshow.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Rotating Background Image Slideshow
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Slideshow with HTML/CSS
Slideshow made with HTML/CSS. Any javascript code is used.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Spooky Scary Clip Text
Spooky CSS only image slideshow with text clipping.
Compatible browsers: Chrome, Firefox, Opera, Safari
Author
Links
Made with
About the code
Slideshow Concept
A pure CSS and HTML slideshow concept. To add or remove slides: 1. add a new slide template in the HTML; 2. update the $slide-count SCSS variable; 3. tab colours: update the $c-slides SCSS variable 4. slide popout images: update the $b-slides SCSS variable. Use the tabs below to change slide.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Silhouette Zoom Slideshow
Slide show where the person in the current frame is used to zoom into the next frame.
Author
Links
Made with
About the code
Geometrical Birds — Slideshow
83 triangles morphing and changing color into different birds.
Author
Links
Made with
About the code
Bubble Slideshow Component
This is a Vue component that uses clip-path for an interesting slideshow transition effect.
Author
Links
Made with
About the code
Slideshow Parallax
Slideshow Parallax with TweenMax.js
Split-Screen Slideshow
HTML, CSS and JavaScript split-screen slideshow.
Made by Sean Free
January 9, 2017
Only CSS Slideshow Effect
Ken Burns slideshow effect CSS only.
Made by Dima
December 12, 2016
Slick Slideshow With Blur Effect
Slideshow with blur effect in HTML, CSS and JavaScript.
Made by Fabio Ottaviani
November 11, 2016
CSS Fadeshow
This is an extended version of pure CSS slideshow gallery http://codepen.io/alexerlandsson/pen/RaZdox which comes with more and easier customisation and previous/next buttons.
Made by Alexander Erlandsson
October 24, 2016