wxc-lightbox
Weex 图片列表全屏显示组件
规则:
使用方法
<template>
<div class="demo-container">
<div class="btn" @click="openLightBox">
<text class="btn-txt">点击按钮弹出全屏图片</text>
</div>
<wxc-lightbox
ref="wxc-lightbox"
height="800"
:show="show"
:image-list="imageList"
@wxcLightboxOverlayClicked="wxcLightboxOverlayClicked">
</wxc-lightbox>
</div>
</template>
<script>
import { WxcLightbox } from 'weex-ui';
export default {
components: {
WxcLightbox
},
data: function () {
return {
imageList: [
{ src: 'https://gd2.alicdn.com/bao/uploaded/i2/T14H1LFwBcXXXXXXXX_!!0-item_pic.jpg' },
{ src: 'https://gd1.alicdn.com/bao/uploaded/i1/TB1PXJCJFXXXXciXFXXXXXXXXXX_!!0-item_pic.jpg' },
{ src: 'https://gd3.alicdn.com/bao/uploaded/i3/TB1x6hYLXXXXXazXVXXXXXXXXXX_!!0-item_pic.jpg' }
],
show: false
};
},
methods: {
openLightBox () {
this.show = true;
},
wxcLightboxOverlayClicked () {
// 无状态组件,需要在此次关闭
this.show = false;
}
}
};
</script>
更详细代码可以参考 demo
可配置参数
Prop | Type | Required | Default | Description |
---|---|---|---|---|
show | Bool |
Y |
false |
全屏图片是否显示 |
imageList | Array |
Y |
[] |
全屏显示图片列表 |
height | Number |
Y |
750 |
全屏显示图片高度 |
width | Number |
Y |
750 |
全屏显示图片宽度 |
show-indicator | Bool |
N |
true |
全屏后是否显示索引… |
indicator-color | Object |
N |
{} |
索引样式配置(注 1) |
注 1 中样式:
{'item-color': 'rgba(255, 195, 0, .5)','item-selected-color': '#ffc300','item-size': '20px'}
事件回调
// 点击蒙层关闭预览 `@wxcLightboxOverlayClicked="wxcLightboxOverlayClicked"`
Please feel free to use and contribute to the development.
原文: https://alibaba.github.io/weex-ui/#/cn/packages/wxc-lightbox/