更新记录
2.0.9(2024-07-13) 下载此版本
组件优化
2.0.7(2024-05-04) 下载此版本
组件说明优化
2.0.6(2024-04-24) 下载此版本
组件优化
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.7.0 app-vue app-nvue | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
cc-popup
我的技术公众号(私信可加前端技术交流群)
群内气氛挺不错的,应该或许可能大概,算是为数不多的,专搞技术的前端群,偶尔聊天摸鱼
使用方法
<view class="popUpBtn" @click="popupClick">
点击显示弹框</view>
<!-- 使用组件 isShow:设置弹框是否显示 width:宽度 height:高度 radius:圆角 -->
<cc-popup :isShow='isshow' width="calc(100vw - 70px)" height="346px" radius="16rpx">
<!-- 自定义展示内容 -->
<view class="modelContent">
<view class="titleV">
弹框标题
</view>
<view style="margin-top: 20px; color: #666666; margin: 6px 12px;">
这是弹框内容 这是弹框内容 这是弹框内容 这是弹框内容
</view>
<image class="imageV" :src="mySrc"></image>
<button style="width: 80%; height: 48px;margin-top: 20px; background-color: seagreen;color: white;"> 确定
</button>
</view>
<!-- 自定义关闭按钮 -->
<view class="close" @click="isshow=false">✕</view>
</cc-popup>
HTML代码实现部分
<template>
<view class="content">
<view class="popUpBtn" @click="popupClick">
点击显示弹框</view>
<!-- 使用组件 isShow:设置弹框是否显示 width:宽度 height:高度 radius:圆角 -->
<cc-popup :isShow='isshow' width="calc(100vw - 60px)" height="346px" radius="16rpx">
<!-- 自定义展示内容 -->
<view class="modelContent">
<view class="titleV">
弹框标题
</view>
<view style="margin-top: 20px; color: #666666; margin: 6px 12px;">
这是弹框内容 这是弹框内容 这是弹框内容 这是弹框内容
</view>
<image class="imageV" :src="mySrc"></image>
<button style="width: 80%; height: 48px;margin-top: 20px; background-color: seagreen;color: white;"> 确定
</button>
</view>
<!-- 自定义关闭按钮 -->
<view class="close" @click="isshow=false">✕</view>
</cc-popup>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
title: 'Hello',
companyList: [{}, {}, {}],
isshow: false,
mySrc: '../../static/apple.jpg'
}
},
onLoad() {
},
methods: {
popupClick() {
this.isshow = !this.isshow;
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
}
.popUpBtn {
height: 80rpx;
line-height: 80rpx;
width: 320rpx;
margin-top: 120rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
background-color: bisque;
text-align: center;
}
.modelContent {
width: 100%;
height: 100%;
display: flex;
align-items: center;
flex-direction: column;
}
.titleV {
width: 100%;
height: 36px;
line-height: 30px;
font-weight: 550;
text-align: center;
margin-top: 8px;
font-size: 17px;
border-bottom: 1px solid #F1F1F1;
}
.imageV {
margin-top: 0px;
width: calc(100vw - 100px);
height: calc((100vw - 100px) * 0.567);
}
.close {
width: 60rpx;
height: 60rpx;
color: #FFFFFF;
line-height: 60rpx;
text-align: center;
border-radius: 50%;
border: 1px solid #FFFFFF;
position: relative;
bottom: -10%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>