Files
2025-08-15 14:05:08 +08:00

31 lines
548 B
JavaScript

const imageCdn = 'https://tdesign.gtimg.com/mobile/demos';
const swiperList = [
{
value: `${imageCdn}/swiper1.png`,
ariaLabel: '图片1',
},
{
value: `${imageCdn}/swiper2.png`,
ariaLabel: '图片2',
},
{
value: `${imageCdn}/swiper1.png`,
ariaLabel: '图片1',
},
{
value: `${imageCdn}/swiper2.png`,
ariaLabel: '图片2',
},
];
Component({
data: {
current: 3,
autoplay: true,
duration: 500,
interval: 5000,
swiperList,
navigation: { type: '', showControls: true },
},
});