合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` created() { window.addEventListener('scroll', this.handleScroll); }, destroyed() { window.removeEventListener('scroll', this.handleScroll); } ``` ```js handleScroll() { var top = document.documentElement.scrollTop || document.body.scrollTop; if(top > 0) { this.isShow = true; var opacity = top/200; if(opacity > 1) { opacity = 1; } this.opacitys.opacity = opacity; } else { this.isShow = false; } } ```