mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-05-05 11:56:35 +08:00
20160829下班
This commit is contained in:
parent
d5324bb3b7
commit
ba14da574c
53
src/app.vue
53
src/app.vue
@ -6,12 +6,22 @@
|
|||||||
<a class="cur" href="" v-text="item.name">{{$index}}</a>
|
<a class="cur" href="" v-text="item.name">{{$index}}</a>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
<button @click="showPanel()" style="float:right;">侧边栏按钮</button>
|
||||||
|
|
||||||
|
<section class="panel" id="panelNav" :class="{ 'active': isShow }">
|
||||||
|
<ul class="nav-aside">
|
||||||
|
<li><a href="#">Home</a></li>
|
||||||
|
<li><a href="#">List</a></li>
|
||||||
|
<li><a href="#">Demo</a></li>
|
||||||
|
<li><a href="#">Download</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import 'mint-ui/lib/style.css';
|
import 'mint-ui/lib/style.css';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
data: function() {
|
data: function() {
|
||||||
return {
|
return {
|
||||||
@ -28,13 +38,48 @@
|
|||||||
'/about':{
|
'/about':{
|
||||||
name:'about'
|
name:'about'
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
isShow: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
/* do someThing */
|
showPanel: function () {
|
||||||
|
this.isShow = !this.isShow;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.panel.active {
|
||||||
|
-webkit-transform: translate3d(0, 0, 0);
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
|
.panel {
|
||||||
|
position: absolute;
|
||||||
|
top: -1px;
|
||||||
|
bottom: -1px;
|
||||||
|
left: 0;
|
||||||
|
z-index: 980;
|
||||||
|
width: 120px;
|
||||||
|
background-color: #333;
|
||||||
|
-webkit-transform: translate3d(-120px, 0, 0);
|
||||||
|
transform: translate3d(-120px, 0, 0);
|
||||||
|
-webkit-transition: -webkit-transform 0.3s ease-in-out;
|
||||||
|
transition: transform 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.nav-aside {
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
.nav-aside li {
|
||||||
|
border-bottom: 1px solid #222;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.nav-aside li a {
|
||||||
|
color: #fff;
|
||||||
|
padding: 0 5px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
60
src/components/sideBar.vue
Normal file
60
src/components/sideBar.vue
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<section class="panel" id="panelNav" :class="{ 'active': isShow }">
|
||||||
|
<ul class="nav-aside">
|
||||||
|
<li><a href="#">Home</a></li>
|
||||||
|
<li><a href="#">List</a></li>
|
||||||
|
<li><a href="#">Demo</a></li>
|
||||||
|
<li><a href="#">Download</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
module.exports = {
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
isShow: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
showPanel: function () {
|
||||||
|
console.log(1);
|
||||||
|
this.isShow = !this.isShow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
/*.panel.active {*/
|
||||||
|
/*-webkit-transform: translate3d(0, 0, 0);*/
|
||||||
|
/*transform: translate3d(0, 0, 0);*/
|
||||||
|
/*}*/
|
||||||
|
/*.panel {*/
|
||||||
|
/*position: absolute;*/
|
||||||
|
/*top: -1px;*/
|
||||||
|
/*bottom: -1px;*/
|
||||||
|
/*left: 0;*/
|
||||||
|
/*z-index: 980;*/
|
||||||
|
/*width: 120px;*/
|
||||||
|
/*background-color: #333;*/
|
||||||
|
/*-webkit-transform: translate3d(-120px, 0, 0);*/
|
||||||
|
/*transform: translate3d(-120px, 0, 0);*/
|
||||||
|
/*-webkit-transition: -webkit-transform 0.3s ease-in-out;*/
|
||||||
|
/*transition: transform 0.3s ease-in-out;*/
|
||||||
|
/*}*/
|
||||||
|
/*.nav-aside {*/
|
||||||
|
/*line-height: 40px;*/
|
||||||
|
/*}*/
|
||||||
|
/*.nav-aside li {*/
|
||||||
|
/*border-bottom: 1px solid #222;*/
|
||||||
|
/*color: #fff;*/
|
||||||
|
/*}*/
|
||||||
|
/*.nav-aside li a {*/
|
||||||
|
/*color: #fff;*/
|
||||||
|
/*padding: 0 5px;*/
|
||||||
|
/*display: block;*/
|
||||||
|
/*}*/
|
||||||
|
</style>
|
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
components:{
|
components:{
|
||||||
uiselect:require('../components/select.vue')
|
uiselect: require('../components/select.vue')
|
||||||
},
|
},
|
||||||
route:{
|
route:{
|
||||||
activate:function(transition){
|
activate:function(transition){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user