piano.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // pages/piano/piano.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. animationBox: {},
  8. animationBg: {},
  9. list:[
  10. {},
  11. {},
  12. {},
  13. {},
  14. {},
  15. {},
  16. ],
  17. loading:'上拉加载',
  18. flag:0,
  19. beginDate: '2021-01-01',
  20. endDate: '2021-02-02',
  21. yFlag: false,
  22. },
  23. showSelect:function(){
  24. var animation = wx.createAnimation({
  25. timingFunction: 'linear',
  26. })
  27. this.animation = animation
  28. var num = 0
  29. var opacity = 0
  30. if(this.data.yFlag == false){
  31. num = 165
  32. opacity = 0.4
  33. this.setData({
  34. yFlag: true
  35. })
  36. } else {
  37. num = -360
  38. opacity = 0
  39. this.setData({
  40. yFlag: false
  41. })
  42. }
  43. animation.translateY(num).step()
  44. this.setData({
  45. animationBox:animation.export()
  46. })
  47. var animation2 = wx.createAnimation({
  48. timingFunction: 'linear',
  49. })
  50. this.animation2 = animation2
  51. animation2.opacity(opacity).step()
  52. this.setData({
  53. animationBg:animation2.export()
  54. })
  55. },
  56. /**
  57. * 生命周期函数--监听页面加载
  58. */
  59. onLoad: function (options) {
  60. },
  61. /**
  62. * 生命周期函数--监听页面初次渲染完成
  63. */
  64. onReady: function () {
  65. },
  66. /**
  67. * 生命周期函数--监听页面显示
  68. */
  69. onShow: function () {
  70. },
  71. /**
  72. * 生命周期函数--监听页面隐藏
  73. */
  74. onHide: function () {
  75. },
  76. /**
  77. * 生命周期函数--监听页面卸载
  78. */
  79. onUnload: function () {
  80. },
  81. /**
  82. * 页面相关事件处理函数--监听用户下拉动作
  83. */
  84. onPullDownRefresh: function () {
  85. },
  86. /**
  87. * 页面上拉触底事件的处理函数
  88. */
  89. onReachBottom: function () {
  90. if(this.data.flag == 0){
  91. this.setData({
  92. loading: '加载中',
  93. flag: 1
  94. })
  95. setTimeout(() => {
  96. this.setData({
  97. list:[
  98. {},
  99. {},
  100. {},
  101. {},
  102. {},
  103. {},
  104. {},
  105. {},
  106. {},
  107. {},
  108. ],
  109. loading: '没有更多数据',
  110. flag: 2
  111. })
  112. }, 2000);
  113. }
  114. },
  115. /**
  116. * 用户点击右上角分享
  117. */
  118. onShareAppMessage: function () {
  119. }
  120. })