这篇文章主要介绍了微信小程序 自定义消息提示框的相关资料,wx.showtoast(object)接口调用,实现改功能,需要的朋友可以参考下
微信小程序 自定义消息提示框
需求描述:
wx.showtoast(object)接口调用,但是不需要icon和image,即便image为空也有占位,实际上只想输出自定义文本内容。
效果截图:
代码如下:
<!--index.wxml-->
<!-- 页面正文 -->
<view>
<block wx:for="{{50}}">
<view> 123456 123456 123456 123456 123456</view>
</block>
</view>
<!-- 自定义弹窗 -->
<view class="showmodule" wx:if="{{isshow}}">
<!-- 这部分内容可以灵活修改,例如改成一个模态框 -->
<view class="text ">{{text}}</view>
</view>
/* index.wxss */
.showmodule {
/* 用样式控制隐藏 visibility: hidden;*//* flex 布局 */
display: flex;
justify-content: center;
align-items: center;
/* 生成绝对定位的元素,相对于浏览器窗口进行定位 */
position: fixed;
/* 如果 height,width 不变的情况下,left,top 不用修改 */
left: 35%;
top: 40%;
height: 20vh;
width: 30vw;
/* 不透明 */
opacity: 0.99;
background-color: #7b7b7b;
/* 圆角 */
border-radius: 30rpx;
}
.showmodule .text {
/* flex 布局 */
display: flex;
/* 字体加粗 */
font-weight: bold;
color: white;
font-size: 13pt;
font-family: "微软雅黑";
/* helvetica,
arial,
hiragino sans gb,
source han sans cn,
pingfang sc,
roboto,
微软雅黑,
heiti sc,
microsoft yahei,
sans-serif; */
}
//index.js
//获取应用实例
var app = getapp()
page({
data: {
text: "弹窗内容",
isshow: false
},
onshow() {
this.setdata({
text: "用户取消支付",
isshow: true
})
}
})
以上就是微信小程序中自定义消息提示框的实现实例分享的详细内容。