继续研究vue组件vue-menu组件

其实这个很简单,出发点就是想做一个点击切换的功能

原生html+css+js代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
    *{
        margin: 0;
        padding: 0;
    }
    .nav-mobile-button {
        position: relative;
        float: left;
        padding: 9px 10px;
        margin-top: 8px;
        margin-right: 15px;
        margin-bottom: 8px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        outline: none;
        border-radius: 4px;
    }
    .nav-mobile-button .same:nth-child(1){
        margin-top: 0; 
    }
    .nav-mobile-button .same {
        display: block;
        margin-top: 4px;
        width: 22px;
        height: 2px;
        background: rgb(63, 81, 181);
        border-radius: 1px; 
    }
    .nav-mobile-button .icon-bar1 {
        transform: translate(0,0) rotate(-45deg);
    }
    .nav-mobile-button .icon-bar2 {
        display: none;
    }
    .nav-mobile-button .icon-bar3 {
        transform: translate(0,-250%) rotate(45deg);
    }
    .box{
        width: 400px;
        height: 500px;
        background-color: #eee;
        transform: translate(-400px,0);
    }
    </style>
</head>
<body>
<button class="nav-mobile-button">
    <span id="span1" class="same"></span>
    <span id="span2" class="same"></span>
    <span id="span3" class="same"></span>
</button>
<div class="box">
    
</div>
</body>
<script>
var oSpan1 = document.getElementById('span1'),
    oSpan2 = document.getElementById('span2'),
    oSpan3 = document.getElementById('span3');
var oBtn = document.querySelector(".nav-mobile-button"),
    oBox = document.querySelector(".box");
oBtn.onclick = function() {
    oSpan3.style.cssText = "transform: translate(0,-250%) rotate(45deg);transition: transform 1s;";
    oSpan1.style.cssText = "transform: translate(0,0) rotate(-45deg);transition: transform 1s;margin-top:4px;";
    oSpan2.style.display = "none";
    oBox.style.cssText = "transform: translate(0,0);transition: transform 1s;"
    oBtn.style.cssText = "z-index:1000;right:-48%;transition: right 1s;";
} 
</script>
</html>
复制代码

点击三杠按钮之后切换成这种效果
将其改成了vue组件 menu.vue

<template>
<div>
	<button class="nav-mobile-button" @click="change" ref="btn">
	    <span id="span1" class="same"></span>
	    <span id="span2" class="same"></span>
	    <span id="span3" class="same"></span>
	</button>
	<div class="box" ref="box">
	    
	</div>
</div>
</template>

<script>
export default {
	name: 'menu',
	data() {
		return {

		}
	},
	methods: {
		change() {
			this.$emit("change")
		}
	}
}
</script>
<style scoped lang="scss">
*{
    margin: 0;
    padding: 0;
}
.nav-mobile-button {
    position: relative;
    float: left;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    outline: none;
    border-radius: 4px;
}
.nav-mobile-button .same:nth-child(1){
    margin-top: 0; 
}
.nav-mobile-button .same {
    display: block;
    margin-top: 4px;
    width: 22px;
    height: 2px;
    background: rgb(63, 81, 181);
    border-radius: 1px; 
}
.box{
    width: 400px;
    height: 500px;
    background-color: #eee;
    transform: translate(-400px,0);
}
</style>
复制代码

引入应用如下 Menu.vue

<template>
	<v-menu ref="menu" @change="change"></v-menu>
</template>
<script>
import menu from "@/menu/menu"
export default {
	name: 'menu',
	components: {
		"v-menu": menu,
	},
	data() {
		return {
			b: false,
			vChilds: null,
			vBtn: null,
			vBox: null
		}
	},
	mounted() {
		this.vChilds = this.$refs.menu.$refs.btn.childNodes;
		this.vBtn = this.$refs.menu.$refs.btn;
		this.vBox = this.$refs.menu.$refs.box;
		this.vBtn.style.cssText = "z-index:1000;right:0;transition: right 1s;";
	},
	methods: {
		change() {
			if(!this.b){
				this.vChilds[0].style.cssText = "transform: translate(0,0) rotate(-45deg);transition: transform 1s;margin-top:4px;";
				this.vChilds[1].style.display = "none";
				this.vChilds[2].style.cssText = "transform: translate(0,-250%) rotate(45deg);transition: transform 1s;";
				this.vBtn.style.cssText = "z-index:1000;right:-26%;transition: right 1s;";
				this.vBox.style.cssText = "transform: translate(0,0);transition: transform 1s;";
				
			}else{
				this.vChilds[0].style.cssText = "transform: translate(0,0) rotate(0);transition: transform 1s;margin-top:4px;";
				this.vChilds[1].style.display = "block";
				this.vChilds[2].style.cssText = "transform: translate(0,0) rotate(0);transition: transform 1s;";
				this.vBtn.style.cssText = "z-index:1000;right:0;transition: right 1s;";
				this.vBox.style.cssText = "transform: translate(-400px,0);transition: transform 1s;";
			}
			this.b = !this.b;
		}
	}
}
</script>
复制代码

至此大功告成

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值