You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
686 B

//login.js
//获取应用实例
var app = getApp();
Page({
data: {
remind: '加载中',
angle: 0,
userInfo: {}
},
goToIndex:function(){
wx.switchTab({
url: '/pages/index/index',
});
},
onLoad:function(){
},
onShow:function(){
},
onReady: function(){
var that = this;
setTimeout(function(){
that.setData({
remind: ''
});
}, 1000);
wx.onAccelerometerChange(function(res) {
var angle = -(res.x*30).toFixed(1);
if(angle>14){ angle=14; }
else if(angle<-14){ angle=-14; }
if(that.data.angle !== angle){
that.setData({
angle: angle
});
}
});
}
});