Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Django - slide duration
#5
(Aug-05-2021, 03:09 PM)ndc85430 Wrote: Did you already look at the docs for Bootstrap's carousel (https://getbootstrap.com/docs/4.0/components/carousel/), trying things out? You'll of course need to include the CSS and JS in your page first - see the "Getting Started" page for that.

I looked at the document and got this example but still not working

<div id="carouselExampleInterval" class="carousel slide" data-ride="carousel">
  <div class="carousel-inner">
    <div class="carousel-item active" data-interval="10000">
      <img src="{% static 'website/img/bg-img/10.png' %}" class="d-block w-100">
    </div>
    <div class="carousel-item" data-interval="7000">
      <img src="{% static 'website/img/bg-img/11.png' %}" class="d-block w-100">
    </div>
    <div class="carousel-item" data-interval="3000">
      <img src="{% static 'website/img/bg-img/9.png' %}" class="d-block w-100">
    </div>
  </div>
  <a class="carousel-control-prev" href="#carouselExampleInterval" role="button" data-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="sr-only">Previous</span>
  </a>
  <a class="carousel-control-next" href="#carouselExampleInterval" role="button" data-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="sr-only">Next</span>
  </a>
</div>
it still counts 5 seconds.
Reply


Messages In This Thread
Django - slide duration - by rwahdan - Aug-04-2021, 03:32 PM
RE: Django - slide duration - by ndc85430 - Aug-04-2021, 04:10 PM
RE: Django - slide duration - by rwahdan - Aug-05-2021, 02:36 PM
RE: Django - slide duration - by ndc85430 - Aug-05-2021, 03:09 PM
RE: Django - slide duration - by rwahdan - Aug-06-2021, 12:11 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Django: How to automatically substitute a variable in the admin page at Django 1.11? m0ntecr1st0 3 3,311 Jun-30-2019, 12:21 AM
Last Post: scidam

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020