小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我是新手,买了一个小程序想要让首页顶部导航跟随轮播图变换而淡入淡出变换,不知道怎么做,如上图一样跟进变换,解决酬谢。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
1、"navigationStyle": "custom"
2、 bindchangeto: function(a) {
if (0 == a.detail.current) {
var t = this.data.Indexcolorbox[a.detail.current].color;
this.setData({
tuhight: a.detail.current,
bacolor: t
});
} else {
t = this.data.Indexcolorbox[a.detail.current].color;
}
剩下的自己会了吧?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我理解在变换的时候加一些css属性就可以了,我写了类似的组件,加上淡入,淡出的效果加上css就行了
transition:all 1.0s ease-in-out; opacity: .5;
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
1、"navigationStyle": "custom"
2、 bindchangeto: function(a) {
if (0 == a.detail.current) {
var t = this.data.Indexcolorbox[a.detail.current].color;
this.setData({
tuhight: a.detail.current,
bacolor: t
});
} else {
t = this.data.Indexcolorbox[a.detail.current].color;
this.setData({
tuhight: a.detail.current,
bacolor: t
});
}
}
剩下的自己会了吧?
我理解在变换的时候加一些css属性就可以了,我写了类似的组件,加上淡入,淡出的效果加上css就行了
transition:all 1.0s ease-in-out; opacity: .5;