网络编程 发布日期:2025/11/7 浏览次数:1
一、效果图
讲什么都不如直接上效果图好,所以我们先来看下实现效果如何。
通过滑动屏幕,或者点击左上角的图标按钮,都能实现侧边栏的划出效果。
二、原理解析
1.先实现侧边栏的内容,让侧边栏的内容居左,然后将侧边栏的内容置于屏幕的最底部。
2.接着实现主页的内容,并且让主页的内容默认是覆盖在侧边栏的内容上面。
3.然后,实现手指滑动屏幕的时候,主页的内容,向左滑动一定的宽度,让侧边栏的内容显示出来,而滑动的效果是通过 css 的 transition 来实现的。
三、源码
由于实现过程的时,我对代码作了比较详细的注释,所有这里就不废话,直接上代码。
slide.wxml
<view class="page">
<!-- 侧边栏内容 -->
<view class="page-slidebar">
<view class="page-content">
<view class="wc">
<text>首页</text>
</view>
<view class="wc">
<text>导航一</text>
</view>
<view class="wc">
<text>导航二</text>
</view>
<view class="wc">
<text>导航三</text>
</view>
</view>
</view>
<!-- 主页内容 -->
<!-- (open "tap_drag" bindtouchend="tap_end" bindtouchstart="tap_start" class="page-top {{open ">
<image bindtap="tap_ch" src="/UploadFiles/2021-04-02/btn.png">
slide.wcss
/* 全局样式 */
page, .page {
height: 100%;
font-family: 'PingFang SC',
'Helvetica Neue',
Helvetica,
'Droid Sans Fallback',
'Microsoft Yachei',
sans-serif;
}
/* 侧边栏样式 */
.page-slidebar {
height: 100%;
width: 750rpx;
position: fixed;
background-color:white;
z-index: 0;
}
/* 控制侧边栏的内容距离顶部的距离 */
.page-content {
padding-top: 60rpx;
}
/* 侧边栏内容的 css 样式 */
.wc {
color:black;
padding: 30rpx 0 30rpx 150rpx;
border-bottom: 1px solid #eee;
}
/* 当屏幕向左滑动,出现侧边栏的时候,主页的动画样式 */
/* scale:取值范围 0~1 ,表示屏幕大小是原来的百分之几,可以自己修改成 0.8 试下*/
/* translate(60%,0%) 表示向左滑动的时候,侧边栏占用平时的宽度为 60% */
.c-state {
transform: rotate(0deg) scale(1) translate(60%, 0%);
-webkit-transform: rotate(0deg) scale(1) translate(60%, 0%);
}
/* 主页样式 */
.page-top {
height: 100%;
position: fixed;
width: 750rpx;
background-color:white;
z-index: 0;
transition: All 0.4s ease;
-webkit-transition: All 0.4s ease;
}
/* 左上角图标的样式 */
.page-top image {
position: absolute;
width: 68rpx;
height: 68rpx;
left: 20rpx;
top: 20rpx;
}
/* 遮盖层样式 */
.cover{
width: 100%;
height: 100%;
background-color:gray;
opacity: 0.5;
z-index: 9000;
}
.content{
margin-top: 100rpx;
}
slide.js
Page({
data: {
open: false,
// mark 是指原点x轴坐标
mark: 0,
// newmark 是指移动的最新点的x轴坐标
newmark: 0,
istoright: true
},
// 点击左上角小图标事件
tap_ch: function(e) {
if (this.data.open) {
this.setData({
open: false
});
} else {
this.setData({
open: true
});
}
},
tap_start: function(e) {
// touchstart事件
// 把手指触摸屏幕的那一个点的 x 轴坐标赋值给 mark 和 newmark
this.data.mark = this.data.newmark = e.touches[0].pageX;
},
tap_drag: function(e) {
// touchmove事件
this.data.newmark = e.touches[0].pageX;
// 手指从左向右移动
if (this.data.mark < this.data.newmark) {
this.istoright = true;
}
// 手指从右向左移动
if (this.data.mark > this.data.newmark) {
this.istoright = false;
}
this.data.mark = this.data.newmark;
},
tap_end: function(e) {
// touchend事件
this.data.mark = 0;
this.data.newmark = 0;
// 通过改变 opne 的值,让主页加上滑动的样式
if (this.istoright) {
this.setData({
open: true
});
} else {
this.setData({
open: false
});
}
}
})
四、项目下载
git 在线下载:
https://github.com/yyzheng1729/slide
五、同类文章推荐
微信小程序 授权登录详解(附完整源码)
微信小程序之下拉列表实现方法解析(附完整源码)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。