WeChat Mini Programs switch has different text, slide button or picture how to do?

clipboard.png
clipboard.png
what should the WeChat Mini Programs switch with different text, button or picture do?


dynamically switch pictures, but there is no animation

  • wxml
Page({
    data: {
        isStart: true
    },
    
    switch() {
        this.setData({
            isStart: !this.data.isStart
        });
    }
})
Menu