微信小程序自定义Modal弹框
本文实例为大家分享了微信小程序自定义Modal弹框的具体代码,供大家参考,具体内容如下
文章图片
一、创建组件
1、在根目录下自定义一个components文件夹,用来存放自定义的组件。
2、再针对每一个组件创建一个文件夹,用来存放这个组件相关的文件。
文章图片
3、在指定组件的文件夹中右键->新建Component创建组件。这样创建的目的是在json文件中添加"component": true,将其声明为一个组件。
文章图片
下面开始例子:
1、组件页面 index.wxml
【微信小程序自定义Modal弹框】2、组件样式 index.wxss
/* components/modal/index.wxss */.components-modal-overlay-view {background-color: #000000; opacity: 0.5; position: fixed; z-index: 10; }.components-modal-close-view{text-align: right; margin-bottom: 5px; }.col-center {position: fixed; z-index: 11; display: flex; flex-direction: column; justify-content: center; align-items: center; }.components-modal-content-view {background: #FFFFFF; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; padding: 20px; }
3、组件json配置 index.json
{"component": true,"usingComponents": {}}
4、组件页面的js index.js
// components/modal/index.jsComponent({options: {/**styleIsolation 选项从基础库版本 2.6.5 开始支持。它支持以下取值:isolated 表示启用样式隔离,在自定义组件内外,使用 class 指定的样式将不会相互影响(一般情况下的默认值);apply-shared 表示页面 wxss 样式将影响到自定义组件,但自定义组件 wxss 中指定的样式不会影响页面;shared 表示页面 wxss 样式将影响到自定义组件,自定义组件 wxss 中指定的样式也会影响页面和其他设置了 apply-shared 或 shared 的自定义组件。(这个选项在插件中不可用。)*/styleIsolation: 'isolated'},/*** 组件的初始数据*/data: {windowWidth: 0,windowHeight: 0,},/*** 生命周期函数*/ready: function() {var _this = this; wx.getSystemInfo({success: function(res) {_this.setData({windowWidth: res.windowWidth,windowHeight: res.windowHeight,}); }}); },/*** 组件的属性列表*/properties: {//是否显示关闭图标showCloseIcon: {type: Boolean,value: true},//是否显示Content样式(白色底色,圆角等)showContentStyle: {type: Boolean,value: true},show: {type: Boolean,value: false},},/*** 组件的方法列表*/methods: {/*** 隐藏Modal*/hideCusModal: function(){this.setData({show: false,}); }}})
5、组件js modal.js
const defaultOptions = {show: false,selector: '#cus-modal',showCloseIcon: true,showContentStyle: true,}; let currentOptions = Object.assign({}, defaultOptions); function getContext() {const pages = getCurrentPages(); return pages[pages.length - 1]; }const Modal = (options) => {options = Object.assign(Object.assign({}, currentOptions), options); const context = options.context || getContext(); const modal = context.selectComponent(options.selector); delete options.context; delete options.selector; if (modal) {modal.setData(options); wx.nextTick(() => {modal.setData({ show: true }); }); }else {console.warn('未找到 cus-modal 节点,请确认 selector 及 context 是否正确'); }}; Modal.show = (options) => Modal(options); export default Modal;
6、使用方法
需要用到modal的页面引入modal组件:
{"usingComponents": {"cus-modal": "../../components/modal/index"}}
页面加入modal节点:
在页面的js中弹出modal窗口:
//引入modal组件import Modal from '../../components/modal/modal'; //在代码中调用Modal.show({selector: '#testModal'});
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- 微信小程序实现手写板
- 小程序实现手写板签名
- 微信小程序自定义Dialog弹框
- 马头镇草寺小学隆重召开期中表模大会
- 2020牛客寒假算法基础集训营6.C——汉诺塔贪心 & Dilworth定理 & 二分求上升子序列最小化分数
- 2020牛客寒假算法基础集训营4.E——最小表达式贪心 & 构造
- TDengine 如何进行数据建模()
- 生活小确幸(一)
- 一个小故事
- 房地产|房企去库存,无法靠小麦、大蒜、西瓜和土猪