问题模块 框架类型 问题类型 终端类型 微信版本 基础库版本
框架 微信小程序 Bug 客户端 6.7.3.1340 2.4.0
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 提供一个最简复现 Demo
style='--activeIndex:{{activeIndex}};position:sticky;top:0;padding-top:{{statusBarHeight||"20"}}px;border:0'>
class='moui-navbar__item {{activeIndex==index?"active":""}}'>
{{item}}
style='width:22px;height:22px;padding:10px;border-radius:50%'>
style='width:32px;height:2px;left:calc((var(--activeIndex) + 0.5) * 144rpx - 16px)'/>
// page.js
Page({
data: {
Navbar: {
activeIndex: 0,
...appData.systemInfo,
tabs: ['问卷', '收藏'],
bindtap: 'bindChangeIndex',
textStyle: 'transition:none;-webkit-transition:none',
},
},
bindChangeIndex: function ({ currentTarget: { id }, detail: { current, source } } = {}) {
if (id.toString() || source === 'touch') {
let activeIndex = id.toString() || current;
if (parseInt(activeIndex) !== this.data.Navbar.activeIndex) {
this.setData({ ['Navbar.activeIndex']: parseInt(activeIndex) });
}
}
},
});
/** app.wxss **/
@import 'style/moui.wxss';
/** https://github.com/mofong/moUI **/
微信小程序开发问题解答
微信小程序开发者回答:
我也遇到了同样的问题,上个礼拜三还可以,昨天看就失效了,每次更新这个问题都会出来,无语。。。
微信小程序开发者回答:
你好,参考下面的回答。另外建议后续经过搜索后再提问,以提高问题解答的效率。
position:stickyhttps://developers.weixin.qq.com/community/develop/doc/0002ee468c8f50a37ef6ba8515b800
微信小程序开发者回答:
你好,微信6.7.2在Android上是支持sticky的,6.7.3又不支持了
本文网址:http://www.91bianli.com/weixinxiaochengxu/46024.html