更新记录
1.0.6(2023-06-14) 下载此版本
修改示例
1.0.5(2023-06-10) 下载此版本
增加预览二维码
1.0.4(2023-05-25) 下载此版本
隐藏滚动条
查看更多平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | - | √ | √ | - | - | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
√ | - | - | - | - | - | - | - | - | - | - |
liu-photo-list适用于uni-app项目的3D照片墙组件
本组件目前兼容微信小程序、H5
本组件是3D照片墙组件,样式优美好看,可点击预览照片,简单易修改,可自定义各类样式
--- 扫码预览、关注我们 ---
扫码关注公众号,查看更多插件信息,预览插件效果!
使用方式
<liu-photo-list :dataList="dataList" @change="change"></liu-photo-list>
export default {
data() {
return {
dataList: [
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo1.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo2.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo3.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo4.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo5.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo6.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo7.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo8.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo1.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo2.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo3.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo4.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo5.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo6.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo7.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo3.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo4.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo5.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo6.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo7.png',
'https://cdn.jsdelivr.net/gh/ckcoding/PICS/PicGo8.png',
],
};
},
methods: {
//点击某个照片
change(e) {
console.log('==========', e)
},
}
}
属性说明
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
dataList | Array | [] | 照片墙数据 |
@change | Function | 点击照片回调事件 |