10 回复
唔…不太能理解。我觉得可能的错误原因是:
startShake 也需要运行,比如放在 onReady 里面。
Page({ onReady: function (){ this .startShake(); } startShake: function () { setTimeout(() => { this .stopShake(); }, 30 * 1000); this .shake = Shake(() => { this .shakeCount = ( this .shakeCount || 0) + 1 }); }, }) |