[TOC]
#### 仿有道App 导航效果
![](https://box.kancloud.cn/6527ee68781c6ad22c5a410cf6854664_377x95.png)
* [ ] 实现代码 homeMain
~~~
<template>
<div class="home-main">
<search-bar />
<cube-scroll
ref="scroll"
:option="options"
:scroll-events="['scroll']"
@scroll="onScrollHandle"
>
</cube-scroll>
</div>
</template>
<script>
import SearchBar from "../../components/home/SearchBar";
import { HomeMixins } from '@/utils/mixins'
export default {
name: 'homeMain',
mixins: [HomeMixins],
data() {
return {
options: {
observeDOM: true,
click: true,
probeType: 3,
scrollbar: false,
pullDownRefresh: false,
pullUpLoad: false
}
}
},
methods: {
onScrollHandle(pos) {
// X 偏移量存入 vuex
this.setScrollY(pos.y)
}
},
components: {
SearchBar
},
}
</script>
<style scoped lang="stylus">
.home-main
width 100%
height 100%
overflow hidden
</style>
~~~
*****
* [ ] searchBar
~~~
<template>
<div class="search-bar" :class="{'hide-title': !titleVisible, 'hide-shadow': !titleShadow}">
<!-- 头部导航条 -->
<transition name="title-move">
<div class="header-wrapper" v-show="titleVisible">
<div class="search-center">
<span class="search-text text">书城</span>
</div>
<div class="search-right">
<i class="icon-shake icon"></i>
</div>
</div>
</transition>
<!-- 左边返回按钮 -->
<div class="search-back" :class="{'hide-title': !titleVisible}">
<i class="icon-back icon"></i>
</div>
<!-- 搜索条 -->
<div class="search-wrapper" :class="{'hide-title': !titleVisible}">
<!-- 留白宽度 : 图标宽度: 16px + position-left: 15px = 31px -->
<div class="search-blank" :class="{'hide-title': !titleVisible}"></div>
<!-- 搜索内容条 -->
<div class="search-input-wrapper">
<i class="icon-search icon"></i>
<input type="text" class="text" v-model="searchContent" placeholder="请输入搜索内容">
</div>
</div>
</div>
</template>
<script type="text/ecmascript-6">
import { HomeMixins } from '@/utils/mixins'
export default {
name: "SearchBar",
mixins: [HomeMixins],
data() {
return {
searchContent: '',
titleVisible: true,
titleShadow: false
}
},
watch: {
scrollY(newVal) {
if (newVal < 0) {
// 下拉 隐藏标题
this.hideTitle()
// 下拉 显示阴影
this.showShadow()
} else {
// 上拉 显示标题
this.showTitle()
// 上拉 隐藏阴影
this.hideShadow()
}
}
},
methods: {
// 显示标题
showTitle() {
this.titleVisible = true
},
// 隐藏标题
hideTitle() {
this.titleVisible = false
},
// 隐藏阴影
hideShadow() {
this.titleShadow = false
},
// 显示阴影
showShadow() {
this.titleShadow = true
}
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus" scoped>
.search-bar
width 100%
height 94px
z-index 9999
box-shadow 0 2px 2px 0 rgba(0,0,0,.1)
&.hide-shadow
box-shadow none
&.hide-title
height 52px
.header-wrapper
position absolute
top 0
left 0
width 100%
height 42px
.search-right
position absolute
top 0
right 15px
height 100%
display flex
align-items center
justify-content center
.search-center
width 100%
height 100%
display flex
align-items center
justify-content center
.search-back
position absolute
left 15px
top 0
height 42px
display flex
align-items center
justify-content center
transition height .2s linear
&.hide-title
height 52px
.search-wrapper
position absolute
left 0
top 42px
width 100%
height 52px
padding 10px
display flex
transition top .2s linear
&.hide-title
top 0
.search-blank
flex 0 0 0
width 0
transition all .2s linear
&.hide-title
flex 0 0 31px
width 31px
.search-input-wrapper
flex 1
width 100%
border-radius 20px
background-color: #f4f4f4;
display flex
justify-content flex-start
align-items center
padding 5px 15px
border 1px solid #eee
input
width 100%
height 22px
background-color: transparent;
color #666
font-size 12px
margin-left 10px
&:focus
outline none
&::-webkit-input-placeholder
color #ccc
font-weight normal
</style>
~~~
- 起步
- 环境搭建
- mock数据
- 基础
- 生命周期
- 过滤器
- 过渡动画
- keyframes动画
- 动画JS钩子
- 路由
- 导航守卫
- 全局守卫
- 监听器
- 自定义组件
- 获取焦点
- mixins
- mixins抽离vuex
- 国际化
- 动态组件
- Dom
- 扩展
- 安装devTools
- scss
- Nuxt引用多个UI库
- vuex
- vuex命名空间
- vuex定义
- cli
- 安装与卸载
- 环境变量
- 杂项
- Mock数据
- FeHelper
- git
- 反向代理
- 本地存储
- stylus
- 常用mixins
- jsonp
- 配置
- mock配置
- 跨域配置
- 自定义路径
- px2rem
- 代理后端请求
- 常用算法
- 字母排序城市数据
- 倒计时
- 通讯录数据结构
- 请求
- axios防止多次请求
- 封装axios请求
- axios使用
- 封装axios
- 插件
- BetterScroll
- 高德定位
- polyfill
- fastClick
- LazyLoad
- storageCache
- moment
- keyFrameAnimation
- vueSwiper
- 组件
- Loading组件
- header组件
- 仿有道App导航
- SupportIcon
- 仿饿了么购物车跳动
- 购物车小球缓动
- 小球飞入购物车
- 仿音乐歌手列表
- 唱片飞入效果
- 搜索组件
- 仿美团PC搜索框
- 页面布局
- stickyFooter
- 背景色渐变
- 背景虚化
- Ui组件
- CubeUi
- CreateApi
- tab滑屏切换
- 索引列表
- BScroll
- BScroll左右联动导航
- vant
- 函数库
- 常用Dom函数库
- axios封装
- 格式化音乐播放时长
- 搜索节流
- time格式化
- JS基础
- window对象中的高度
- JS中的宽高
- 常用正则
- nuxt
- nuxtVuex
- 监听页面滚动
- 监听body滚动
- 监听局部滚动