gpt4 book ai didi

javascript - Twitter Bootstrap Carousel 不会自动启动

转载 作者:太空宇宙 更新时间:2023-11-04 04:10:33 25 4
gpt4 key购买 nike

Bootstrap carousel 以前可以工作,但现在不工作了。我不知道我现在做错了什么。我在头上加载 jQuery,在页脚中加载 Javascript 外部文件和 bootstrap JS。

我希望在加载文档/加载页面时 Carousel 应该自动启动。我尝试了几种选择,但没有成功。

$(function(){
$('.carousel').carousel({
interval: 2000
});
});

$(function(){
$('.carousel').carousel({
interval: 2000
});
$('.carousel-control.right').trigger('click');
});

这是在页脚中加载的 JavaScript。

$("#homeCarousel .item:first").addClass("active");
$("#homeCarousel .carousel").carousel({interval: 100});

这是 HTML

<div id="homeCarousel" class="carousel slide visible-lg">
<div id="CurrentDemandMeter">
<div class="graph"><?php require_once("snippets/home_current_deman_graph.php"); ?></div>
<div class="graphDeails">
<div class="our_current_demand_label">Our current demand</div>
<div class="what_is_this_label"><a class="what_is_this_link" href="#"></a></div>
</div>
</div>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<?php
$i=0;
$args = array('category_name' => 'homepage-carousel',);
$loop = new WP_Query($args);
while($loop->have_posts()): $loop->the_post();
$link = get_field("learn_more_link", $post->ID);
//$link = $meta_values[0];

$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);

$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
$attachment = wp_get_attachment_url( $attachment->ID, 'full' );
?>
<div class="item">
<div class="fill"><img src="<?php echo $attachment; ?>" class="img-responsive"/></div>
<div class="carousel-caption">
<h1><?php echo substr(the_title($before = '', $after = '...', FALSE), 0, 30); ?></h1>
<div class="excerpt"><?php echo the_excerpt(); ?></div>
<a href="<?php echo $link; ?>" class="btn_learn_more"></a>
</div>
</div>
<?php
}
}
endwhile;
wp_reset_query();
?>
</div>
</div>

最佳答案

我已经找到问题的答案。出于某种原因,"data-ride="carousel" 丢失了

<div id="homeCarousel" class="carousel slide visible-lg" data-ride="carousel">

只是一个简单的错误...干杯!

关于javascript - Twitter Bootstrap Carousel 不会自动启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20752754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com