uni.showToast怎么加红色边框?
时间: 2024-01-06 18:21:57 浏览: 124
详解微信小程序开发之——wx.showToast(OBJECT)的使用
5星 · 资源好评率100%
可以通过在 uni.showToast 的 css 样式中添加 border 属性来实现加红色边框的效果,具体代码如下:
```
uni.showToast({
title: '提示信息',
icon: 'none',
duration: 2000,
mask: true,
cssClass: 'custom-toast'
});
// 在样式文件中添加以下代码
.custom-toast {
border: 1px solid red;
}
```
阅读全文