selectDate.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // pages/Components/selectDate/selectDate.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. },
  8. /**
  9. * 组件的初始数据
  10. */
  11. data: {
  12. beginDate: '2021-01-01',
  13. endDate: '2021-02-02',
  14. yFlag: false,
  15. animationBox: {},
  16. animationBg: {},
  17. },
  18. /**
  19. * 组件的方法列表
  20. */
  21. methods: {
  22. showSelect:function(){
  23. var animation = wx.createAnimation({
  24. timingFunction: 'linear',
  25. })
  26. this.animation = animation
  27. var num = 0
  28. var opacity = 0
  29. if(this.data.yFlag == false){
  30. num = 195
  31. opacity = 0.4
  32. this.setData({
  33. yFlag: true
  34. })
  35. } else {
  36. num = -360
  37. opacity = 0
  38. this.setData({
  39. yFlag: false
  40. })
  41. }
  42. animation.translateY(num).step()
  43. this.setData({
  44. animationBox:animation.export()
  45. })
  46. var animation2 = wx.createAnimation({
  47. timingFunction: 'linear',
  48. })
  49. this.animation2 = animation2
  50. animation2.opacity(opacity).step()
  51. this.setData({
  52. animationBg:animation2.export()
  53. })
  54. },
  55. }
  56. })