我是布尔玛的新手。我正在尝试轮播扩展程序,但是它不起作用。我已经复制了一个示例,并且按照文档进行了研究,但是仍然无法正常工作。感谢您的帮助!这是我的代码:
<script type="text/javascript" src="https://wikiki.github.io/node_modules/bulma-extensions/bulma-carousel/dist/js/bulma-carousel.js"></script>
<script>
$(document).ready(function(){
bulmaCarousel.attach();
});
</script>
最佳答案
首先,您不能直接从Github中包含Github脚本。
确保已从Bulma-Carousel,CSS和JS导入jQuery和Bulma文件。
然后,像这样初始化Bulma-Carousel:
<script>
$(document).ready(function(){
var carousels = bulmaCarousel.attach(); // carousels now contains an array of all Carousel instances
});
</script>
希望这对您有所帮助!