bindtouchstart="handleTouchStart" //按下未松开
bindtouchend="handleTouchEnd" //松开
再写出你想要的 *** 作就行了
微信小程序字体颜色突然变了:1、首先找到主题打开。
2、然后在下方找到“字体”并且选择。
3、接着选择一款自己喜欢的颜色,点击使用。
4、最后这个时候桌面字体就会发生变化,然后再打开微信,就会发现微信里面的字已经变成别的颜色了。
Tarok可能不太了解,可以参考以下代码为正常微信小程序:
index.wxml:
<view style="background:{{bgcolor}}height:100rpxwidth:100%"bindtap="changecolor">......</view>
index.js:
const app = getApp()Page({
data: {
bgcolor: "green"
},
onLoad: function(){
},
changecolor:function(){
this.setData({
bgcolor:"red",
})
}
})
点击view变红色
谢谢采纳
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)