我看到你可以设置间隔,但我想控制项目滑动的速度?
// Sets interval...what is transition slide speed?
$('#mainCarousel').carousel({
interval: 3000
});
答案 0 :(得分:103)
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
。这样可以在转换结束前同步转换并防止幻灯片消失。
EDIT 7/8/2014
正如@YellowShark所指出的,不再需要JS中的编辑了。仅适用于css更改。
2015年8月8日编辑 现在,在编辑css文件之后,您只需编辑CAROUSEL.TRANSITION_DURATION(在bootstrap.js中)或c.TRANSITION_DURATION(如果使用bootstrap.min.js)并更改其中的值(默认值为600)。最终值必须与放在css文件中的值相同(例如,css中的10s = .js中的10000)
编辑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文件。
答案 1 :(得分:71)
只需在包含轮播的data-interval
中写div
:
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="500">
取自w3schools。
的示例答案 2 :(得分:11)
对于Twitter Bootstrap 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)
答案 3 :(得分:11)
您需要将主DIV中的间隔设置为data-interval标记。它会正常工作,你可以给不同的幻灯片提供不同的时间。
<div class="carousel" data-interval="5000">
答案 4 :(得分:8)
我注意到的一件事是Bootstrap 3正在添加.6s
和0.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;
}
答案 5 :(得分:3)
不需要任何外部代码,只需使用data-interval=""
属性
更多信息,请访问getbootstrap
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel" data-interval="2500">
当您想更改速度更改为“ 2500”
答案 6 :(得分:3)
对我来说,在我的观点结尾处添加了这个:
<script type="text/javascript">
$(document).ready(function(){
$("#myCarousel").carousel({
interval : 8000,
pause: false
});
});
</script>
它给旋转木马一个8秒的间隔
答案 7 :(得分:2)
如果您需要以编程方式进行更改(例如)基于某些条件的速度(可能只是许多轮播中的一个),您可以执行以下操作:
如果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(...)以包含其他浏览器。
答案 8 :(得分:2)
包含bootstrap.min.js
或未压缩的,可以添加间隔作为参数,如下所示
jQuery("#numbers").carousel({'interval':900 });
它对我有用
答案 9 :(得分:2)
如果你不想更改bootstrap的js文件,你也可以直接将所需的值注入jquery插件(bootsrap 3.3.6)。
当然,这需要通过js手动激活轮播,而不是直接通过data-ride属性激活。
例如:
var interval = 3500;
$.fn.carousel.Constructor.TRANSITION_DURATION = interval - 500;
elem.carousel({
interval : interval
});
答案 10 :(得分:2)
对于具有scss的引导程序4,您可以像这样在struct CmdCollection {
struct Cmd {
Cmd(CmdCollection &coll, const char *sqlStmt)
: collec(coll), sqlStmt(sqlStmt), sqlHandle(Database::noHandle)
{};
Database::Handle operator() () {
if (sqlHandle==Database::noHandle) {
sqlHandle = collec.db->prepareSQL(sqlStmt);
}
return sqlHandle;
}
CmdCollection &collec;
const char *sqlStmt;
Database::Handle sqlHandle;
};
Database db;
Cmd cmd1 = Cmd(*this, "STMT1");
Cmd cmd2 = Cmd(*this, "STMT2");
CmdCollection(Database db) : db(db) {}
};
struct BaseSQLStmts {
BaseSQLStmts(Database db) : db(db), col(db) {};
// SQL-Statement to construct with database and SQL.
CmdCollection col;
// And many more (>50) members of type Cmd.
private:
Database db;
};
中覆盖配置变量$carousel-transition-duration
:
_variables.scss
或者为元素单独的持续时间设置
$carousel-transition-duration: 2s;
css / scss中特定元素的内容。
答案 11 :(得分:1)
如果您要编辑幻灯片进入和退出的速度(不是更改幻灯片之间的时间,称为间隔),请参阅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;
}
之后,您需要在javascript中替换carousel函数。为此,您将在加载后覆盖默认的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);
答案 12 :(得分:1)
你可以使用这个
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel" data-interval="4000">
只需在 1 秒后下一张图片的位置添加 data-interval="1000"
。
答案 13 :(得分:1)
对于Bootstrap 4,只需使用以下CSS:
.carousel .carousel-item {
transition-duration: 3s;
}
将3s
更改为您选择的持续时间。
答案 14 :(得分:1)
对我有用的是改变 bootstrap.js
中的间隔 Carousel.DEFAULTS = {
interval: 2000, // <----- change this
pause: 'hover',
wrap: true,
keyboard: true
}
答案 15 :(得分:1)
为了补充以前的答案,在编辑CSS文件后,您只需要编辑CAROUSEL.TRANSITION_DURATION
(在 bootstrap.js 中)或c.TRANSITION_DURATION
(如果您使用< em> 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
}
答案 16 :(得分:0)
如果使用ngCarousel模块,则像下面这样编辑@ ng-bootstrap / ng-bootstrap / carousel-config.js文件中的interval变量:
var NgbCarouselConfig = /** @class */ (function () {
function NgbCarouselConfig() {
this.interval = 10000;
this.wrap = true;
...
}
...
答案 17 :(得分:0)
添加数据间隔
data-interval="20000"
答案 18 :(得分:0)
在您的CSS中:
.carousel-item {
transition-duration: 1.5s, 1.5s;
}
请注意,时间已包含在为轮播定义的数据间隔中。
希望对您有帮助...:)
答案 19 :(得分:0)
所有轮播
;with tempOrderItems AS
(
SELECT
COUNT(DISTINCT OrderItems.ProductID) AS 'TotalSoldItemsDistinct',
COUNT(OrderItems.ProductID) AS 'TotalSoldItemsInDistinct',
SUM(OrderItems.PurchasePrice) AS 'TotalPurchasePrice',
SUM(OrderItems.SalePrice) AS 'TotalSalePrice'
FROM OrderItems ori
WHERE OrderDate BETWEEN xxx AND yyy
)
, tempOrders AS
(
SELECT
COUNT(o.OrderID) AS 'TotalOrders',
SUM(CASE WHEN o.OrderStatusID = @CompleteOStatusID THEN 1 ELSE 0 END) AS 'CompleteOrders',
SUM(CASE WHEN o.OrderStatusID = @PendingOStatusID THEN 1 ELSE 0 END) AS 'PendingOrders',
SUM(CASE WHEN o.ClientID != @WalkingCustID THEN 1 ELSE 0 END) AS 'namedcustomers',
SUM(CASE WHEN o.ClientID = @WalkingCustID THEN 1 ELSE 0 END) AS 'WalkingCustomers'
FROM Orders o
WHERE TransactionDate BETWEEN xxx AND yyy
)
SELECT * FROM tempOrderItems
CROSS JOIN tempOrders
答案 20 :(得分:0)
在main.js文件或bootstrap.js中,更改 autoplayTimeout
的值
public static void Foo(Data request)
{
Validate(request, nameof(request));
Validate(request.Properties, nameof(request.Properties));
request.Properties.TryGetValue("bar", out var bar);
}
答案 21 :(得分:0)
使用 data-interval="2000"
如下
1000 = 1 秒
<div id="carouselExampleIndicators" class="carousel slide carousel-custom" data-`ride="carousel" data-interval="2000">`
答案 22 :(得分:0)
结合使用两个答案为我提供了我正在寻找的样式。
data-interval
attr 在引导程序 5 中对我来说根本不起作用。我也不在本地存储引导程序
减慢从一张幻灯片到另一张幻灯片的时间
站点 CSS 文件。
.carousel-item {
transition-duration: 1.5s;
}
在移动到下一张幻灯片之前减缓延迟
站点 JS 文件
$(document).ready(function () {
$('.carousel').carousel({
interval: 15000
})
});
答案 23 :(得分:0)
在 Bootstrap 4.1 中,这只能通过添加:
$carousel-transition-duration: 2s; // or some duration length
在您的自定义 SASS 变量中并编译。