fix(carousel): 修复动态删除条目至最后一个时调用 inst.reload 的异常问题 (#2107)

* fix(carousel): 修复外部动态增删条目时调用 inst.reload 的异常问题

* chore: 更正命名,避免歧义

* fix: 修复 slide 方法在条目数为 1 的滑动异常问题
This commit is contained in:
贤心
2024-07-26 10:34:52 +08:00
committed by GitHub
parent 12e33cedab
commit 80188cdcd8
2 changed files with 53 additions and 42 deletions

View File

@@ -68,54 +68,56 @@ div[carousel-item]>*:nth-child(2n+1){background-color: #5FB878;}
layui.use('carousel', function(){
var carousel = layui.carousel;
//建造实例
carousel.render({
elem: '#test1'
,index: 2
//,full: true
,arrow: 'always'
,autoplay: 'always'
,change: function(obj){
// 实例
var carInst = carousel.render({
elem: '#test1',
index: 2,
// full: true,
arrow: 'always',
autoplay: 'always',
change: function(obj) {
console.log(obj)
}
//,interval: 5000
//,autoplay: false
//,indicator: 'outside'
//,trigger: 'hover'
},
// interval: 5000,
// autoplay: false,
// indicator: 'outside',
// trigger: 'hover'
});
// carInst.goto(1);
//事件
// 事件
/*
carousel.on('change(test1)', function(obj){
carousel.on('change(test1)', function(obj) {
console.log(obj)
});
*/
carousel.render({
elem: '#test2'
,interval: 1800
//,full: true
,anim: 'fade'
,height: '120px'
elem: '#test2',
interval: 1800,
// full: true,
anim: 'fade',
height: '120px'
});
carousel.render({
elem: '#test3'
//,full: true
,arrow: 'always'
//,autoplay: false
//,indicator: 'outside'
//,trigger: 'hover'
,anim: 'updown'
//,full: true
elem: '#test3',
// full: true,
arrow: 'always',
// autoplay: false,
// indicator: 'outside',
// trigger: 'hover',
anim: 'updown',
// full: true
});
// 图片轮播
carousel.render({
elem: '#test4'
,width: '720px'
,height: '360px'
,interval: 5000
elem: '#test4',
width: '720px',
height: '360px',
interval: 5000
});
});
</script>