Make a quote SlideShow in Blogger

 To make quotes SlideShow

Read this steps:

Image Source:Google


1.Open your blogger and click on Layout.

2.After,Click on add a gadget and select html/java script

3.After add this css


<style>

* {box-sizing: border-box}

body {font-family: Verdana, sans-serif; margin:0}

/* Slideshow container */

.slideshow-container {

  position: relative;

  background: #f1f1f1f1;

}

/* Slides */

.mySlides {

  display: none;

  padding: 80px;

  text-align: center;

}


.prev, .next {

  margin-top: -30px;

  padding: 16px;

  color: #888;

  font-weight: bold;

  font-size: 20px;

  border-radius: 0 3px 3px 0;

  user-select: none;

}


.next {

  position: absolute;

  right: 0;

  border-radius: 3px 0 0 3px;

}


.prev:hover, .next:hover {

  background-color: rgba(0,0,0,0.8);

  color: white;

}


.dot-container {

    text-align: center;

    padding: 20px;

    background: #ddd;

}

.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;

}


q {font-style: italic;}

/* Add a blue color to the author */

.author {color: cornflowerblue;}

</style>


4.After this add this html

 

<div class="slideshow-container">

<div class="mySlides">

  <q>Your quote</q>

  <p class="author">- Your Author</p>

</div>

<div class="mySlides">

  <q>Your quote</q>

  <p class="author">- Your author name</p>

</div>

<div class="mySlides">

  <q>Your quote</q>

  <p class="author">-Your author name</p>

</div>

<a class="prev" onclick="plusSlides(-1)">❮</a>

<a class="next" onclick="plusSlides(1)">❯</a>

</div>

<div class="dot-container">

  <span class="dot" onclick="currentSlide(1)"></span> 

  <span class="dot" onclick="currentSlide(2)"></span> 

  <span class="dot" onclick="currentSlide(3)"></span> 

</div>



 5.At last add this Javascipt

<script>
var slideIndex = 1;
showSlides(slideIndex);

function plusSlides(n) {
  showSlides(slideIndex += n);
}

function currentSlide(n) {
  showSlides(slideIndex = n);
}

function showSlides(n) {
  var i;
  var slides = document.getElementsByClassName("mySlides");
  var dots = document.getElementsByClassName("dot");
  if (n > slides.length) {slideIndex = 1}    
  if (n < 1) {slideIndex = slides.length}
  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";
}
</script>

Post a Comment

Enter comments by following community guidelines

Previous Post Next Post