recommend.js 1.7 KB

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