vue移動端實現可拖動懸浮按鈕

完整代碼

<template>
    <div class="float_button">
        <div
            @click="onBtnClicked"
            ref="floatButton"
            class="float_info"
            :style="{'width': itemWidth + 'px', 'height': itemHeight + 'px', 'left': left + 'px', 'top': top + 'px'}"
        >
            <img src="../../../assets/img/takeout/home.png" alt="" srcset="">
            <span class="text">{{ text }}</span>
        </div>
    </div>
</template>
<script>
export default {
    data() {
        return {
            clientWidth: 0,
            clientHeight: 0,
            timer: null,
            currentTop: 0,
            left: 0,
            top: 0,
        }
    },
    props: {
        text: {                 // 按鈕文本內容
            type: String,
            default: "首頁"
        },
        itemWidth: {            // 懸浮按鈕寬度
            type: Number,
            default: 40
        },
        itemHeight: {           // 懸浮按鈕高度
            type: Number,
            default: 50
        },
        gapWidth: {             // 距離左右兩邊距離     
            type: Number,
            default: 0
        },
        coefficientHeight: {    // 從上到下距離比例
            type: Number,
            default: 0.55
        }
    },
    created() {
        this.clientWidth = document.documentElement.clientWidth
        this.clientHeight = document.documentElement.clientHeight
        this.left = this.clientWidth - this.itemWidth - this.gapWidth
        this.top = this.clientHeight * this.coefficientHeight
    },
    methods: {
        onBtnClicked(){
            this.$emit("onFloatBtnClicked")
        },
        handleScrollStart() {
            this.timer && clearTimeout(this.timer)
            this.timer = setTimeout(() => {
                this.handleScrollEnd()
            }, 300)
            this.currentTop = document.documentElement.scrollTop || document.body.scrollTop
            if(this.left > this.clientWidth / 2) {
                this.left = this.clientWidth - this.itemWidth / 2
            } else {
                this.left = -this.itemWidth / 2
            }
        },
        handleScrollEnd(){
            let scrollTop = document.documentElement.scrollTop || document.body.scrollTop
            if(scrollTop === this.currentTop) {
                if(this.left > this.clientWidth/2) {
                    this.left = this.clientWidth - this.itemWidth - this.gapWidth
                } else {
                    this.left = this.gapWidth
                }
                clearTimeout(this.timer)
            }
        }
    },
    mounted() {
        this.$nextTick(() => {
            const floatButton = this.$refs.floatButton
            floatButton.addEventListener("touchstart", () => {
                floatButton.style.transition = 'none'
            })
            
            // 在拖拽的過程中,組件應該跟隨手指的移動而移動。
            floatButton.addEventListener("touchmove", (e) => {
                console.log('移動中', e)
                if (e.targetTouches.length === 1) {         // 一根手指
                    let touch = e.targetTouches[0]
                    this.left = touch.clientX - 20
                    this.top = touch.clientY - 25
                }
            })
            
			// 拖拽結束以後,重新調整組件的位置並重新設置過度動畫。
            floatButton.addEventListener("touchend", () => {
                floatButton.style.transition = 'all 0.3s'
                if(this.left > document.documentElement.clientWidth / 2) {
                    this.left = document.documentElement.clientWidth - 40
                }else{
                    this.left = 0
                }
            })
        })
    },
    beforeDestroy(){
        // 添加監聽頁面滾動
        window.removeEventListener('scroll', this.handleScrollStart)
    },
    destroyed() {}
}
</script>
<style lang="less">
.float_button {
    .float_info{
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
        color: #666666;
        transition: all 0.3s;
        position: fixed;
        bottom: 436px;
        right: 0;
        width: 80px;
        height: 100px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 14px;
        cursor: pointer;
        .text{
            font-size: 24px;
            color: #fff;
        }
        img{
            width: 44px;
            height: 44px;
        }
    }
}
</style>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章