gpt4 book ai didi

jquery - Jcarousel无限循环

转载 作者:行者123 更新时间:2023-11-30 23:47:04 24 4
gpt4 key购买 nike

我想做的是让我的 slider 连续循环遍历 LI,而不是滚动直到到达最后一项然后停止(这就是它当前所做的)。

下面的代码来自于Wordpress站点,所以虽然只显示了1个LI,但实际上前端输出了大约6、7个LI:

PHP

<ul id="slideshowContainer" class="jcarousel jcarousel-skin-tango">
<?php $clientLogos = new WP_Query(array('post_type' => 'client-logos', 'posts_per_page' => -1)); ?>
<?php while ($clientLogos->have_posts() ) : $clientLogos->the_post(); ?>
<li>
<?php if (has_post_thumbnail( $post->ID )): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); ?>
<img src="<?php bloginfo('template_directory'); ?>/thumbs.php?src=<?php echo $image[0]; ?>&h=100&zc=1" alt="<?php the_title(); ?>" />
<?php endif; ?>
</li>
<?php endwhile;?>
<div style="clear:both"></div>
</ul>

JS

jQuery(document).ready(function() {

jQuery('#slideshowContainer').jcarousel({
scroll: 1,
auto: .01,
wrap: 'last',
easing: 'linear'
});

});

谢谢!

最佳答案

你不能用吗

wrap: 'circular'

关于jquery - Jcarousel无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7887933/

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