Answers for "images folder html"

2

html add image from folder

<img src="/images/flowers.jpg" alt="A Flower Bouquet"/>
<img src= "./flowers.jpg" alt="A Flower Bouquet"/>
<img src="../otherImages/flowers.jpg" alt="A Flower Bouquet"/>
Posted by: Guest on May-31-2021
7

path in html

/   = Root directory
   .   = This location
   ..  = Up a directory
   ./  = Current directory
   ../ = Parent of current directory
   ../../ = Two directories backwards
Posted by: Guest on March-26-2020
0

read images from folder and view html

<body>

  <div class="slideshow-container">

    <div class="mySlides fade">
      <img src="img_nature_wide.jpg" style="width:100%">
    </div>

    <div class="mySlides fade">
      <img src="img_snow_wide.jpg" style="width:100%">
    </div>

    <div class="mySlides fade">
      <img src="img_mountains_wide.jpg" style="width:100%">
    </div>

    <a class="prev" onclick="plusSlides(-1)">&#10094;</a>
    <a class="next" onclick="plusSlides(1)">&#10095;</a>

  </div>
  <br>

  <div style="text-align:center">
    <span class="dot" onclick="currentSlide(1)"></span>
    <span class="dot" onclick="currentSlide(2)"></span>
    <span class="dot" onclick="currentSlide(3)"></span>
  </div>

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

</body>
Posted by: Guest on August-01-2021

Code answers related to "images folder html"

Browse Popular Code Answers by Language