diff options
author | prashantsinalkar | 2017-09-07 12:26:06 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-09-07 12:26:06 +0530 |
commit | 9f89e398c88fa0982363d5f42e10f04dc4b58911 (patch) | |
tree | f0b8bb2d7988c21ba56d00f025d4405e2a975fb0 /website/templates/gallery.html | |
parent | a545b3f01d16d6dcaebe3067a2e847df7c271a59 (diff) | |
download | SciPy2017-9f89e398c88fa0982363d5f42e10f04dc4b58911.tar.gz SciPy2017-9f89e398c88fa0982363d5f42e10f04dc4b58911.tar.bz2 SciPy2017-9f89e398c88fa0982363d5f42e10f04dc4b58911.zip |
initial commit for development
Diffstat (limited to 'website/templates/gallery.html')
-rw-r--r-- | website/templates/gallery.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/website/templates/gallery.html b/website/templates/gallery.html new file mode 100644 index 0000000..435e6fc --- /dev/null +++ b/website/templates/gallery.html @@ -0,0 +1,38 @@ +{% load static %} +<center> + <div class="w3-content w3-display-container"> + <img class="mySlides" src= "{% static 'img/images/1.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/2.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/3.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/4.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/5.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/6.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/7.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/8.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/9.jpg'%}" style="width:70%; height:90%"> + <img class="mySlides" src= "{% static 'img/images/10.jpg'%}" style="width:70%; height:90%"> + + <a class="w3-btn-floating w3-display-left" onclick="plusDivs(-1)"> ❮ Previous </a> + <a class="w3-btn-floating w3-display-right" onclick="plusDivs(1)"> Next ❯ </a> +</div> +</center> + +<script> +var slideIndex = 1; +showDivs(slideIndex); + +function plusDivs(n) { + showDivs(slideIndex += n); +} + +function showDivs(n) { + var i; + var x = document.getElementsByClassName("mySlides"); + if (n > x.length) {slideIndex = 1} + if (n < 1) {slideIndex = x.length} + for (i = 0; i < x.length; i++) { + x[i].style.display = "none"; + } + x[slideIndex-1].style.display = "block"; +} +</script>
\ No newline at end of file |