[TOC]
#### 唱片飞入效果
![](https://box.kancloud.cn/a270366155c27ece3ef5e2026141abdc_376x666.png)
* [ ] 基础效果实现
~~~
// 全屏播放器效果
<transition name="normal"></transition>
// 迷你播放器效果
<transition name="mini"></transition>
~~~
~~~
.normal-enter-active, &.normal-leave-active
transition: all 0.4s
.top, .bottom
transition: all 0.4s cubic-bezier(0.86, 0.18, 0.82, 1.32)
.normal-enter, &.normal-leave-to
opacity: 0
.top
transform: translate3d(0, -100px, 0)
.bottom
transform: translate3d(0, 100px, 0)
~~~
~~~
.mini-enter-active, &.mini-leave-active
transition: all 0.4s
.mini-enter, &.mini-leave-to
opacity: 0
~~~
* [ ] 扩展效果
~~~
<div class="player" v-show="playList.length > 0">
<!-- 全屏播放器 -->
<transition name="normal"
@enter="enter"
@after-enter="afterEnter"
@leave="leave"
@after-leave="afterLeave"
>
<div class="normal-player" v-show="fullScreen">
~~~
* [ ] 图示
![](https://box.kancloud.cn/d10dcf5b536ac78f9155231857594186_376x668.png)
```
import { PlayerMixin } from 'utils/mixin'
import animations from 'create-keyframe-animation'
methods: {
// 动画即将出现,设置动画结束位置
enter (el, done) {
// 动画即将开始,设置动画初始坐标
const { x, y, scale } = this._getPosAndScale()
// 定义动画
let animation = {
0: {
transform: `translate3d(${x}px,${y}px,0) scale(${scale})`
},
60: {
transform: `translate3d(0,0,0) scale(1.1)`
},
100: {
transform: `translate3d(0,0,0) scale(1)`
}
}
// 执行动画
animations.registerAnimation({
name: 'move',
animation,
presets: {
duration: 400,
easing: 'linear'
}
})
// 执行动画,调用done函数跳到afterEnter函数
animations.runAnimation(this.$refs.cdWrapper, 'move', done)
},
afterEnter () {
// 清除动画
animations.unregisterAnimation('move')
this.$refs.cdWrapper.style.animation = ''
},
// 动画结束
leave (el, done) {
this.$refs.cdWrapper.style.transition = 'all 0.4s'
const { x, y, scale } = this._getPosAndScale()
this.$refs.cdWrapper.style[transform] = `translate3d(${x}px,${y}px,0) scale(${scale})`
const timer = setTimeout(done, 400)
this.$refs.cdWrapper.addEventListener('transitionend', () => {
clearTimeout(timer)
done()
})
},
// 清除参数
afterLeave () {
this.$refs.cdWrapper.style.transition = ''
this.$refs.cdWrapper.style[transform] = ''
},
// 动画初始位置
_getPosAndScale () {
const targetWidth = 40 // 迷你播放球宽度
const paddingLeft = 40 // 迷你播放器距离左边偏移
const paddingBottom = 30 // 迷你播放球距离底部偏移
const paddingTop = 80 // 顶部导航宽度
const width = window.innerWidth * 0.8 // 大播放球宽度80%
const scale = targetWidth / width // 初始缩放比例
const x = -(window.innerWidth / 2 - paddingLeft) // 迷你播放器初始X坐标
// 迷你播放球初始Y坐标
const y = window.innerHeight - paddingTop - width / 2 - paddingBottom
return {
x,
y,
scale
}
}
}
```
- 起步
- 环境搭建
- 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滚动
- 监听局部滚动