vipMember.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // pages/vipMember/vipMember.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. attentionAnim: ''
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad: function (options) {
  13. },
  14. /**
  15. * 生命周期函数--监听页面初次渲染完成
  16. */
  17. onReady: function () {
  18. var attentionAnim = wx.createAnimation({
  19. duration: 500,
  20. timingFunction: 'linear',
  21. delay: 0
  22. })
  23. //设置循环动画
  24. this.attentionAnim = attentionAnim
  25. var next = true;
  26. setInterval(function () {
  27. if (next) {
  28. //根据需求实现相应的动画
  29. this.attentionAnim.scale(1.05).step()
  30. next = !next;
  31. } else {
  32. this.attentionAnim.scale(1).step()
  33. next = !next;
  34. }
  35. this.setData({
  36. //导出动画到指定控件animation属性
  37. attentionAnim: attentionAnim.export()
  38. })
  39. }.bind(this), 500)
  40. },
  41. /**
  42. * 生命周期函数--监听页面显示
  43. */
  44. onShow: function () {
  45. },
  46. /**
  47. * 生命周期函数--监听页面隐藏
  48. */
  49. onHide: function () {
  50. },
  51. /**
  52. * 生命周期函数--监听页面卸载
  53. */
  54. onUnload: function () {
  55. },
  56. /**
  57. * 页面相关事件处理函数--监听用户下拉动作
  58. */
  59. onPullDownRefresh: function () {
  60. },
  61. /**
  62. * 页面上拉触底事件的处理函数
  63. */
  64. onReachBottom: function () {
  65. },
  66. /**
  67. * 用户点击右上角分享
  68. */
  69. onShareAppMessage: function () {
  70. }
  71. })