推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
675 B

2 months ago
2 months ago
2 months ago
  1. export const globalMixin = {
  2. data() {
  3. return {
  4. bgColor:'transparent',
  5. fontColor:'#fff',
  6. leftIconColor: '#fff'
  7. };
  8. },
  9. computed: {
  10. customStyle() {
  11. return {
  12. height: '88rpx',
  13. color: '#FF4546',
  14. }
  15. }
  16. },
  17. created() {
  18. },
  19. onPageScroll(e) {
  20. if(e.scrollTop > 50) {
  21. this.bgColor ='#49070c'
  22. this.fontColor ="#fff",
  23. this.leftIconColor ="#fff"
  24. }else{
  25. this.bgColor ='transparent'
  26. this.fontColor ="#fff",
  27. this.leftIconColor ="#fff"
  28. }
  29. },
  30. methods: {
  31. }
  32. };