小程序
小游戏
企业微信
微信支付
扫描小程序码分享
《小程序开发指南》第五章,图片里红色弹出提示。
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
接入就可以了
https://developers.weixin.qq.com/miniprogram/dev/extended/weui/toptips.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
社区网友太热心了,代码都直接给了。
wxml
<view class="top {{show==true?'topShow':''}}"></view>
wxss
.top{
position: fixed;
width: 100%;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
background-color: red;
color: #fff;
font-size: 28rpx;
transition: all 1s ease-in-out;
top: -80rpx;
z-index: 1;
left: 0;
}
.topShow{
top: 0;
绝对定位 写个动画从最上面缓入 一个定时 几秒后影藏
这样式没什么难的吧 你是想问它怎么弹出的吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
接入就可以了
https://developers.weixin.qq.com/miniprogram/dev/extended/weui/toptips.html
社区网友太热心了,代码都直接给了。
wxml
<view class="top {{show==true?'topShow':''}}"></view>
wxss
.top{
position: fixed;
width: 100%;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
background-color: red;
color: #fff;
font-size: 28rpx;
transition: all 1s ease-in-out;
top: -80rpx;
z-index: 1;
left: 0;
}
.topShow{
top: 0;
}
绝对定位 写个动画从最上面缓入 一个定时 几秒后影藏
这样式没什么难的吧 你是想问它怎么弹出的吗
position: fixed;