有什么方法可以使用同一页面上的按钮或超链接在轮播项目之间进行切换。我正在使用wordpress,无法找到关于此问题的任何特殊情况。如果可以,请提供一个解决方案或共享一个链接,将对您有所帮助。
答案 0 :(得分:0)
您应该在html中添加按钮控件。
<!-- Controls -->
<a class="left carousel-control" href="#carousel_slider_id" role="button" data-slide="prev">
<span class="fa fa-angle-left" aria-hidden="true"></span>
</a>
<a class="right carousel-control" href="#carousel_slider_id" role="button" data-slide="next">
<span class="fa fa-angle-right" aria-hidden="true"></span>
</a>
请确保使用您的轮播滑块ID更新“ carousel_slider_id”。