91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue組件設計Sticky布局效果怎么實現

發布時間:2023-05-04 10:07:56 來源:億速云 閱讀:229 作者:iii 欄目:開發技術

本篇內容主要講解“Vue組件設計Sticky布局效果怎么實現”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue組件設計Sticky布局效果怎么實現”吧!

Vue組件設計-Sticky布局

Sticky布局即為粘性定位,常見于一些重要的頁面區域在向上滾動時不會被卷起來,在CSS中可以通過設置position:sticky來實現這一功能,但是如果出于兼容性考慮或是一些復雜的場景,就需要我們用傳統的方法來實現。

1. 效果示例

Vue組件設計Sticky布局效果怎么實現

 2. 組件封裝

<template>
    <div :>
        <div
            :class="className"
            :style="{
                width: width,
                zIndex: zIndex,
                position: position,
                height: height + 'px',
                top: isSticky ? stickyTop + 'px' : '',
            }">
            <slot>
            </slot>
        </div>
    </div>
</template>
<script>
export default {
    name: "Sticky",
    props: {
        stickyTop: {
            type: Number,
            default: 0,
        },
        zIndex: {
            type: Number,
            default: 1,
        },
        className: {
            type: String,
            default: "",
        },
    },
    data() {
        return {
            position: "",
            active: false,
            isSticky: false,
            width: undefined,
            height: undefined,
        };
    },
    mounted() {
        this.height = this.$el.getBoundingClientRect().height;
        window.addEventListener("scroll", this.handleScroll);
        window.addEventListener("resize", this.handleResize);
    },
    // 組件激活時調用
    activated() {
        this.handleScroll();
    },
    destroyed() {
        window.removeEventListener("scroll", this.handleScroll);
        window.removeEventListener("resize", this.handleResize);
    },
    methods: {
        sticky() {
            if (this.active) {
                return;
            }
            this.active = true;
            this.isSticky = true;
            this.position = "fixed";
            this.width = this.width + "px";
        },
        handleReset() {
            if (!this.active) {
                return;
            }
            this.reset();
        },
        reset() {
            this.position = "";
            this.width = "auto";
            this.active = false;
            this.isSticky = false;
        },
        handleScroll() {
            // 粘性定位區域的寬度
            const width = this.$el.getBoundingClientRect().width;
            this.width = width || "auto";
            // 粘性定位距屏幕頂部的高度
            const offsetTop = this.$el.getBoundingClientRect().top;
            // 如果滾動高度小于設定的定位高度
            if (offsetTop < this.stickyTop) {
                this.sticky();
                return;
            };
            this.handleReset();
        },
        handleResize() {
            if (this.isSticky) {
                this.width = this.$el.getBoundingClientRect().width + "px";
            }
        },
    },
};
</script>

3. 組件使用

<template>
    <div >
        <div ></div>
        <Sticky>
            <div >
                這是定位區域
            </div>
        </Sticky>
    </div>
</template>
<script>
import Sticky from "@/components/Sticky";
export default {
    components:{
        Sticky:Sticky
    }
};
</script>

到此,相信大家對“Vue組件設計Sticky布局效果怎么實現”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彰化市| 和平县| 福州市| 资兴市| 安福县| 襄垣县| 什邡市| 抚州市| 成安县| 汕头市| 商河县| 洛扎县| 景德镇市| 读书| 白河县| 辽中县| 金坛市| 江油市| 乌审旗| 冷水江市| 张家口市| 阳朔县| 丹寨县| 交口县| 班玛县| 三原县| 安乡县| 西平县| 南汇区| 留坝县| 盐源县| 秭归县| 霍城县| 孝感市| 长海县| 佛坪县| 西峡县| 乌兰察布市| 宜川县| 金溪县| 仲巴县|