developer tip

항목에서 슬라이드 슬라이드를 부트 스트랩하는 속도를 어떻게 제어 할 수 있습니까?

copycodes 2020. 10. 20. 07:46
반응형

항목에서 슬라이드 슬라이드를 부트 스트랩하는 속도를 어떻게 제어 할 수 있습니까?


간격을 설정할 수 있지만 항목 슬라이드 속도를 제어하고 싶습니까?

   // Sets interval...what is transition slide speed?
    $('#mainCarousel').carousel({
    interval: 3000
});

속도는 API로 제어 할 수 없습니다. 그것을 담당하는 CSS를 수정할 수 있지만. 에서 carousel.less파일 찾기

.item {
    display: none;
    position: relative;
    .transition(.6s ease-in-out left);
}

.6s원하는대로 변경 합니다.


.less를 사용하지 않는 경우 bootstrap.css파일 에서 찾으십시오 .

.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -moz-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

0.6s원하는 시간으로 변경 합니다. 아래 함수 호출에서 시간을 편집 할 수도 있습니다.

.emulateTransitionEnd(2000) 

에서 bootstrap.js함수 Carousel.prototype.slide. 전환을 동기화하고 전환이 끝나기 전에 슬라이드가 사라지는 것을 방지합니다.

2014 년 7 월 8 일 수정

@YellowShark가 지적했듯이 JS의 편집은 더 이상 필요하지 않습니다. CSS 변경 사항 만 적용하십시오.

편집 20/8/2015 이제 css 파일을 편집 한 후 CAROUSEL.TRANSITION_DURATION (bootstrap.js에서) 또는 c.TRANSITION_DURATION (bootstrap.min.js를 사용하는 경우)을 편집하고 그 안의 값을 변경하면됩니다. (기본값은 600). 최종 값은 CSS 파일에 입력 한 값과 동일해야합니다 (예 : 10s in css = 10000 in .js)

16/01/2018 편집 Bootstrap 4의 경우 전환 시간을 예를 들어 2 초로 변경하려면 다음을 추가하십시오.

$(document).ready(function() {
  jQuery.fn.carousel.Constructor.TRANSITION_DURATION = 2000  // 2 seconds
});

사이트의 JS 파일에

.carousel-inner .carousel-item {
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

사이트의 CSS 파일에.


캐 러셀을 포함하여 작성 data-interval하십시오 div.

<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="500">

w3schools 에서 가져온 예 .


트위터 부트 스트랩 3 :

다른 답변에 지정된대로 CSS 전환을 변경해야합니다.

.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -moz-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}

0.6 초 ~ 1.5 초 (예 :)

또한 변경해야 할 Javascript가 있습니다. bootstrap.js에는 다음 행이 있습니다.

.emulateTransitionEnd(600)

이 값은 밀리 초 단위로 변경해야합니다. 따라서 1.5 초 동안 숫자를 1500으로 변경합니다.

.emulateTransitionEnd(1500)

기본 DIV의 간격을 데이터 간격 태그로 설정해야합니다. 그것은 잘 작동하고 다른 슬라이드에 다른 시간을 줄 수 있습니다.

<div class="carousel" data-interval="5000">

내가 알아 차린 한 가지는 Bootstrap 3이 a .6s0.6s. 따라서 다음과 같이 전환 기간을 명시 적으로 정의해야 할 수도 있습니다 (CSS)

    .carousel-inner>.item {
    -webkit-transition: 0.9s ease-in-out left;
    transition: 0.9s ease-in-out left;
    -webkit-transition: 0.9s, ease-in-out, left;
    -moz-transition: .9s, ease-in-out, left;
    -o-transition: .9s, ease-in-out, left;
    transition: .9s, ease-in-out, left;
    }

나를 위해 내 견해 끝에 이것을 추가하기 위해 노력했습니다.

<script type="text/javascript">
$(document).ready(function(){
     $("#myCarousel").carousel({
         interval : 8000,
         pause: false
     });
});
</script>

8 초 간격을 캐 러셀에 제공합니다.


예를 들어 여러 캐 러셀 중 하나에서만 특정 조건에 따라 속도를 변경하기 위해 프로그래밍 방식으로 수행해야하는 경우 다음과 같이 할 수 있습니다.

Html이 다음과 같은 경우 :

<div id="theSlidesList" class="carousel-inner" role="listbox">
  <div id="Slide_00" class="item active"> ...
  <div id="Slide_01" class="item"> ...
  ...
</div>

JavaScript는 다음과 같습니다.

$( "#theSlidesList" ).find( ".item" ).css( "-webkit-transition", "transform 1.9s ease-in-out 0s" ).css( "transition", "transform 1.9s ease-in-out 0s" )

다른 브라우저를 포함하려면 .css (...)를 더 추가하십시오.


bootstrap.min.js하나를 포함 하거나 압축하지 않은 후 다음 과 같이 간격을 매개 변수로 추가 할 수 있습니다 jQuery("#numbers").carousel({'interval':900 });.


부트 스트랩의 js 파일을 변경하지 않으려면 원하는 값을 jquery 플러그인 (bootsrap 3.3.6)에 직접 삽입 할 수도 있습니다.

물론이를 위해서는 캐 러셀이 data-ride 속성을 통해 직접 활성화되는 것이 아니라 js를 통해 수동으로 활성화되어야합니다.

예를 들면 :

var interval = 3500;
$.fn.carousel.Constructor.TRANSITION_DURATION = interval - 500;
elem.carousel({
    interval : interval
});

나를 위해 일한 것은 bootstrap.js 에서 간격 을 변경하는 것이 었습니다.

  Carousel.DEFAULTS = {
    interval: 2000,      // <----- change this
    pause: 'hover',
    wrap: true,
    keyboard: true
  }

이전 답변을 보완하려면 CSS 파일을 편집 한 후 CAROUSEL.TRANSITION_DURATION( bootstrap.js에서 ) 또는 c.TRANSITION_DURATION( bootstrap.min.js 를 사용하는 경우 ) 편집 하고 그 안의 값 (기본값은 600)을 변경하면됩니다. 최종 값은 CSS 파일에 입력 한 값과 동일해야합니다 (예 : CSS의 10s = .js의 10000).

Carousel.VERSION  = '3.3.2'
Carousel.TRANSITION_DURATION = xxxxx /* Your number here*/
Carousel.DEFAULTS = {
interval: 5000 /* you could change this value too, but to add data-interval="xxxx" to your html it's fine too*/
pause: 'hover',
wrap: true,
keyboard: true
}

부트 스트랩 3.3.5에 대해 슬라이드가 들어오고 나가는 속도 (슬라이드 변경 사이의 시간이 아닌 간격이라고 함)를 편집하려는 경우 | CDN 부트 스트랩 스타일을로드 한 후 다음 클래스를 사용하여 자신의 CSS 스타일 시트에서 스타일을 덮어 씁니다. 1.5는 시간 변화입니다.

.carousel-inner > .item {
-webkit-transition: 1.5s ease-in-out ;
-o-transition: 1.5s ease-in-out ;
transition: 1.5s ease-in-out ;
}
.carousel-inner > .item {
-webkit-transition: -webkit-transform 1.5s ease-in-out;
-o-transition: -o-transform 1.5s ease-in-out;
transition: transform 1.5s ease-in-out;

}

그 후에는 자바 스크립트에서 캐 러셀 기능을 교체해야합니다. 이렇게하려면로드 후 기본 bootstrap.min.js 함수를 덮어 씁니다. (제 생각에는 부트 스트랩 파일을 직접 덮어 쓰는 것은 좋지 않습니다.) 따라서 mynewscript.js를 만들고 bootstrap.min.js 다음에로드하고 새 캐 러셀 기능을 추가합니다. 편집 할 유일한 줄은이 줄입니다. Carousel.TRANSITION_DURATION = 1500. 1500은 1.5입니다. 도움이 되었기를 바랍니다.

    +function ($) {
  'use strict';

  // CAROUSEL CLASS DEFINITION
  // =========================

  var Carousel = function (element, options) {
    this.$element    = $(element)
    this.$indicators = this.$element.find('.carousel-indicators')
    this.options     = options
    this.paused      = null
    this.sliding     = null
    this.interval    = null
    this.$active     = null
    this.$items      = null

    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))

    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
  }

  Carousel.VERSION  = '3.3.5'

  Carousel.TRANSITION_DURATION = 1500

  Carousel.DEFAULTS = {
    interval: 5000,
    pause: 'hover',
    wrap: true,
    keyboard: true
  }

  Carousel.prototype.keydown = function (e) {
    if (/input|textarea/i.test(e.target.tagName)) return
    switch (e.which) {
      case 37: this.prev(); break
      case 39: this.next(); break
      default: return
    }

    e.preventDefault()
  }

  Carousel.prototype.cycle = function (e) {
    e || (this.paused = false)

    this.interval && clearInterval(this.interval)

    this.options.interval
      && !this.paused
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))

    return this
  }

  Carousel.prototype.getItemIndex = function (item) {
    this.$items = item.parent().children('.item')
    return this.$items.index(item || this.$active)
  }

  Carousel.prototype.getItemForDirection = function (direction, active) {
    var activeIndex = this.getItemIndex(active)
    var willWrap = (direction == 'prev' && activeIndex === 0)
                || (direction == 'next' && activeIndex == (this.$items.length - 1))
    if (willWrap && !this.options.wrap) return active
    var delta = direction == 'prev' ? -1 : 1
    var itemIndex = (activeIndex + delta) % this.$items.length
    return this.$items.eq(itemIndex)
  }

  Carousel.prototype.to = function (pos) {
    var that        = this
    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))

    if (pos > (this.$items.length - 1) || pos < 0) return

    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
    if (activeIndex == pos) return this.pause().cycle()

    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
  }

  Carousel.prototype.pause = function (e) {
    e || (this.paused = true)

    if (this.$element.find('.next, .prev').length && $.support.transition) {
      this.$element.trigger($.support.transition.end)
      this.cycle(true)
    }

    this.interval = clearInterval(this.interval)

    return this
  }

  Carousel.prototype.next = function () {
    if (this.sliding) return
    return this.slide('next')
  }

  Carousel.prototype.prev = function () {
    if (this.sliding) return
    return this.slide('prev')
  }

  Carousel.prototype.slide = function (type, next) {
    var $active   = this.$element.find('.item.active')
    var $next     = next || this.getItemForDirection(type, $active)
    var isCycling = this.interval
    var direction = type == 'next' ? 'left' : 'right'
    var that      = this

    if ($next.hasClass('active')) return (this.sliding = false)

    var relatedTarget = $next[0]
    var slideEvent = $.Event('slide.bs.carousel', {
      relatedTarget: relatedTarget,
      direction: direction
    })
    this.$element.trigger(slideEvent)
    if (slideEvent.isDefaultPrevented()) return

    this.sliding = true

    isCycling && this.pause()

    if (this.$indicators.length) {
      this.$indicators.find('.active').removeClass('active')
      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
      $nextIndicator && $nextIndicator.addClass('active')
    }

    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
    if ($.support.transition && this.$element.hasClass('slide')) {
      $next.addClass(type)
      $next[0].offsetWidth // force reflow
      $active.addClass(direction)
      $next.addClass(direction)
      $active
        .one('bsTransitionEnd', function () {
          $next.removeClass([type, direction].join(' ')).addClass('active')
          $active.removeClass(['active', direction].join(' '))
          that.sliding = false
          setTimeout(function () {
            that.$element.trigger(slidEvent)
          }, 0)
        })
        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
    } else {
      $active.removeClass('active')
      $next.addClass('active')
      this.sliding = false
      this.$element.trigger(slidEvent)
    }

    isCycling && this.cycle()

    return this
  }


  // CAROUSEL PLUGIN DEFINITION
  // ==========================

  function Plugin(option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.carousel')
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
      var action  = typeof option == 'string' ? option : options.slide

      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
      if (typeof option == 'number') data.to(option)
      else if (action) data[action]()
      else if (options.interval) data.pause().cycle()
    })
  }

  var old = $.fn.carousel

  $.fn.carousel             = Plugin
  $.fn.carousel.Constructor = Carousel


  // CAROUSEL NO CONFLICT
  // ====================

  $.fn.carousel.noConflict = function () {
    $.fn.carousel = old
    return this
  }


  // CAROUSEL DATA-API
  // =================

  var clickHandler = function (e) {
    var href
    var $this   = $(this)
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
    if (!$target.hasClass('carousel')) return
    var options = $.extend({}, $target.data(), $this.data())
    var slideIndex = $this.attr('data-slide-to')
    if (slideIndex) options.interval = false

    Plugin.call($target, options)

    if (slideIndex) {
      $target.data('bs.carousel').to(slideIndex)
    }

    e.preventDefault()
  }

  $(document)
    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)

  $(window).on('load', function () {
    $('[data-ride="carousel"]').each(function () {
      var $carousel = $(this)
      Plugin.call($carousel, $carousel.data())
    })
  })

}(jQuery);

Bootstrap 4에서는 다음 CSS를 사용하십시오.

.carousel .carousel-item {
    transition-duration: 3s;
}

3s원하는 기간으로 변경하십시오 .


CSS에서 :

.carousel-item {
    transition-duration: 1.5s, 1.5s;
}

시간은 캐 러셀에 정의 된 데이터 간격에 포함됩니다.

도움이 되었기를 바랍니다 ... :)


모든 캐 러셀

  <script type="text/javascript">
              $(document).ready(function () {
            $('.carousel').carousel({
                interval: 15000
            })
        });

    </script>

ngCarousel 모듈을 사용하는 경우 @ ng-bootstrap / ng-bootstrap / carousel-config.js 파일에서 간격 변수를 다음과 같이 편집합니다.

var NgbCarouselConfig = /** @class */ (function () {
function NgbCarouselConfig() {
    this.interval = 10000;
    this.wrap = true;
    ...
}
...

데이터 간격 추가

data-interval="20000"

참고URL : https://stackoverflow.com/questions/17332431/how-can-i-control-the-speed-that-bootstrap-carousel-slides-in-items

반응형