| | |
| | | export default class UiGoToTop extends Vue { |
| | | buttonDisplay = 'none'; |
| | | |
| | | ////////////////////////////////////////////////////////////////// |
| | | |
| | | created() { |
| | | if (process.browser) { |
| | | document.body.addEventListener('scroll', this.scrollFunction); |
| | | } |
| | | } |
| | | |
| | | destroyed() { |
| | | document.body.removeEventListener('scroll', this.scrollFunction); |
| | | } |
| | | |
| | | ////////////////////////////////////////////////////////////////// |
| | | |
| | | scrollFunction() { |
| | | if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 300) { |
| | |
| | | topFunction() { |
| | | document.body.scrollTop = 0; |
| | | document.documentElement.scrollTop = 0; |
| | | } |
| | | |
| | | destroyed() { |
| | | document.body.removeEventListener('scroll', this.scrollFunction); |
| | | } |
| | | } |
| | | </script> |
| | |
| | | background-color: $MID_GREY; |
| | | } |
| | | } |
| | | </style> |
| | | </style> |