uni-app自定義Modal模態彈窗模板uniPop,uniapp仿微信、android、ios彈窗效果vue
uniPop內置多種動畫效果、可供選擇類型ios/android、能夠自定義彈窗樣式/自定義多按鈕及事件/彈窗顯示位置、自動關閉秒數、遮罩層透明度及點擊遮罩是否關閉android
如上圖:H5/小程序/App三端效果兼容性一致。(後續大圖均展現App端)
ios
uniPop.vue彈窗組件兩種引入方式:小程序
一、在main.js裏引入全局組件import uniPop from './components/uniPop/uniPop.vue'
Vue.component('uni-pop', uniPop)
微信
二、在頁面引入組件app
<template> <view class="container"> ... <!-- 彈窗模板 --> <uni-pop ref="uniPop"></uni-pop> </view> </template> <script> import uniPop from './components/uniPop/uniPop.vue' export default { data() { return { ... } }, components:{ uniPop }, ... } </script>
下面展現幾種彈窗類型及調用方式
msg信息框效果
函數
this.$refs.uniPop.show({ content: 'msg消息提示框(5s後窗口關閉)', shade: true, shadeClose: false, time: 5, anim: 'fadeIn', })
ios底部對話框效果
動畫
let uniPop = this.$refs.uniPop uniPop.show({ skin: 'footer', content: '<div>查看TA的主頁 <br/> 282310962@qq.com</div>', shadeClose: false, anim: 'bottom', btns: [ { text: '關注', style: 'color: #41a863', onTap() { console.log('您點擊了關注!'); } }, {text: '加入黑名單'}, { text: '刪除', // style: {color: '#e63d23'}, style: 'color: #ff4350', onTap() { console.log('您點擊了刪除!'); //刪除回調提示 uniPop.show({ anim: 'fadeIn', content: '您點擊了刪除功能', shade: true, time: 3 }); } }, { text: '取消', style: 'color: #999', onTap() { console.log('您點擊了取消!'); uniPop.close(); } } ] })
Toast弱提示效果(支持success/info/error/loading四種圖標)
ui
this.$refs.uniPop.show({ skin: 'toast', content: 'loading', icon: 'loading', //success | info | error | loading shade: false, time: 3 })
uniPop自定義組件模板templatethis
/** * @tpl uni-app自定義彈窗組件 - uniPop.vue * @author andy by 2019-09-20 * @about Q:282310962 wx:xy190310 */ <template> <view v-if="opts.isVisible" class="uniPop" :class="opts.isCloseCls"> <view class="unipop__ui_panel"> <view v-if="opts.shade" class="unipop__ui_mask" @tap="shadeTaped"></view> <view class="unipop__ui_main"> <view class="unipop__ui_child" :style="opts.style"> <!-- 標題 --> <view v-if="opts.title" class="unipop__ui_tit">{{opts.title}}</view> <!-- 內容 --> <view v-if="opts.content" class="unipop__ui_cnt" :style="opts.contentStyle"> {{opts.content}} </view> <view v-if="opts.btns" class="unipop__ui_btns"> <text v-for="(item,index) in opts.btns" :key="index" class="btn" :style="item.style" @tap="btnTaped(item)">{{item.text}}</text> </view> </view> <!-- xclose --> <view v-if="opts.xclose" class="unipop__xclose" @tap="close"></view> </view> </view> </view> </template>
data() { return { defaultOptions: { isVisible: false, //是否顯示彈窗 title: '', //標題 content: '', //內容 contentStyle: '', //內容樣式 style: null, //自定義彈窗樣式 skin: '', //彈窗風格 icon: '', //彈窗圖標 xclose: false, //自定義關閉按鈕 shade: true, //遮罩層 shadeClose: true, //點擊遮罩關閉 opacity: '', //遮罩透明度 time: 0, //自動關閉秒數 end: null, //銷燬彈窗回調函數 anim: 'scaleIn', //彈窗動畫 scaleIn(默認) | fadeIn | shake | top | right | bottom | left position: '', //彈窗位置 top | right | bottom | left btns: null, //彈窗按鈕 }, opts: {}, timer: null } },
show(args) { this.opts = Object.assign({}, this.defaultOptions, args, {isVisible: true}) // console.log(this.opts) // 自動關閉 if(this.opts.time) { this.timer = setTimeout(() => { this.close() }, this.opts.time * 1000) } },
以上就是uniApp自定義組件彈窗介紹,但願能喜歡😀😀~~
◆ 附上uniapp自定義頂部導航欄及底部tabBar組件
uniapp自定義導航欄:https://blog.csdn.net/yanxiny...
uniapp自定義tabbar:https://blog.csdn.net/yanxiny...