msp/owlcarousel2
最新稳定版本:0.1.6
Composer 安装命令:
composer require msp/owlcarousel2
包简介
README 文档
README
This module lets you use OwlCarousel2 with Magento 2 through requirejs.
Installation
composer require msp/owlcarousel2
bin/magento setup:upgrade
Usage
Initialization
You can init the slider with data-mage-init:
<div id="your-slider" class="owl-carousel" data-mage-init='{
"OwlCarousel": {
"autoPlay" : true,
"autoplayTimeout" : 1500,
"loop" : true,
"items" : 1,
"dots" : false
}
}'>
<img src="kitten1.jpg" />
<img src="kitten2.jpg" />
<img src="kitten3.jpg" />
<img src="kitten4.jpg" />
</div>
or with a <script type="text/x-magento-init">:
<div id="your-slider" class="owl-carousel">
<img src="kitten1.jpg" />
<img src="kitten2.jpg" />
<img src="kitten3.jpg" />
<img src="kitten4.jpg" />
</div>
<script type="text/x-magento-init">
{
"#your-slider": {
"OwlCarousel": {
"autoplay" : true,
"autoPlayTimeout" : 1500,
"loop" : true,
"items" : 1,
"dots" : false
}
}
}
</script>
OwlCarousel theme css
This module loads only the base css from OwlCarousel, but no theme.
The default theme is included, and you can add it to your theme layout default.xml (or whatever layout file) with:
...
<head>
...
<css src="Msp_OwlCarousel2::css/owl.theme.default.min.css" />
...
</head>
...
统计信息
- 总下载量: 37.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 15
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2016-07-22