【vue其他相关】用transform属性做个区域(组件)切换的效果

文章目录

效果

在这里插入图片描述
颜色小方块可以是个大组件,比如图表之类的,抛个砖~

代码

用transform属性,能很好的节省性能。

<template>
    <main class="wrap">
        <div class="item" style="transform: translate(-200%, 0%) scale(0.33)" @click="changeShowItemClick(0)"></div>
        <div class="item" style="transform: translate(-100%, 0%) scale(0.33)" @click="changeShowItemClick(1)"></div>
        <div class="item" style="transform: translate(100%, 0%) scale(0.33)" @click="changeShowItemClick(2)"></div>
        <div class="item" style="transform: scale(0.33)" @click="changeShowItemClick(3)"></div>
        <div class="item active" style="transform: translate(-50%, 100%) scale(1)" @click="changeShowItemClick(4)"></div>
    </main>
</template>

<script>

export default {
    name: 'About',
    data() {
        return {
            activeIndex: 4,  // 正在展示的dom下标
            itemNodeList: [] // 所有项的dom
        }
    },
    mounted() {
        this.itemNodeList = document.querySelectorAll('.item')
    },
    methods: {
        changeShowItemClick(index) {
            if (index === this.activeIndex) return

            let activeItem = document.querySelector('.active')
            // 交换active类名
            activeItem.classList.remove('active')
            this.itemNodeList[index].classList.add('active')
            this.activeIndex = index
            // 交换transform属性
			[activeItem.style.transform, this.itemNodeList[index].style.transform] = [this.itemNodeList[index].style.transform, activeItem.style.transform]
        }
    }
}
</script>

<style scoped>
    .wrap {
        width: 100vw;
        height: 100vh;
        position: relative;
    }
    .item {
        position: absolute;
        display: inline-block;
        width: 200px;
        height: 200px;
        background-color: aquamarine;
        transition: all 0.8s;
    }
    /* 里面写一些激活的特征 */
    .active {
        width: 200px;
        height: 200px;
    }
</style>

水~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值