vue实现吸顶


data(){
        return{
            list:[],
            swiperOption:"",
            xiding : "",
            // 轮播高度
            SwiperHeight:''
        }
    },
    mounted(){
        this.onload()
        // 获取轮播图图片的高度
        setTimeout(()=> {
            // 通过ref获取轮播dom,获取轮播的高度
            console.log(this.$refs.mySwiper.$el.offsetHeight)
            this.SwiperHeight = this.$refs.mySwiper.$el.offsetHeight
        },2000)

        // 监听滑动事件
        window.onscroll = this.handleScroll
    },
    destroyed(){
        window.onscroll = null; //清除滑动事件绑定
        },
    methods:{
        handleScroll(){
            // 获取屏幕滑动的高度
            console.log(document.documentElement.scrollTop)
            // 滑动高度 > 轮播dom高度  吸顶
            if(document.documentElement.scrollTop > this.SwiperHeight){
                // 吸顶
                this.xiding = true
            }else{
                // 取消吸
                this.xiding = false
            }
        },

 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM