[TOC]
#### Vue 仿音樂歌手列表組件

* [ ] 實現代碼 js
~~~
<template>
<div class="music-list">
<!-- 返回按鈕 -->
<div class="back" @click="back">
<i class="icon-back"></i>
</div>
<!-- 歌手標題 -->
<h1 class="title" v-html="title"></h1>
<!-- 背景 注意以下兩個屬性 -->
<!--transform-origin: top;-->
<!--background-size: cover;-->
<div class="bg-image" :style="bgStyle" ref="bgImage">
<div class="play-wrapper">
<div ref="playBtn" v-show="songs.length>0" class="play" @click="random">
<i class="icon-play"></i>
<span class="text">隨機播放全部</span>
</div>
</div>
<div class="filter" ref="filter"></div>
</div>
<!-- 背景遮罩層 -->
<div class="bg-layer" ref="layer"></div>
<!-- 歌手列表 -->
<scroll :data="songs" @scroll="scroll"
:listen-scroll="listenScroll" :probe-type="probeType" class="list" ref="list">
<div class="song-list-wrapper">
<song-list :songs="songs" :rank="rank" @select="selectItem"></song-list>
</div>
<!-- loading 組件 -->
<div v-show="!songs.length" class="loading-container">
<loading></loading>
</div>
</scroll>
</div>
</template>
<script type="text/ecmascript-6">
import Scroll from 'base/scroll/scroll'
import Loading from 'base/loading/loading'
import SongList from 'base/song-list/song-list'
import { prefixStyle } from 'common/js/dom'
import { playlistMixin } from 'common/js/mixin'
import { mapActions } from 'vuex'
const RESERVED_HEIGHT = 40
const transform = prefixStyle('transform')
const backdrop = prefixStyle('backdrop-filter')
export default {
mixins: [playlistMixin],
props: {
bgImage: {
type: String,
default: ''
},
songs: {
type: Array,
default () {
return []
}
},
title: {
type: String,
default: ''
},
rank: {
type: Boolean,
default: false
}
},
data () {
return {
scrollY: 0
}
},
computed: {
bgStyle () {
return `background-image:url(${this.bgImage})`
}
},
created () {
this.probeType = 3
this.listenScroll = true
},
mounted () {
// 獲取背景圖高度
this.imageHeight = this.$refs.bgImage.clientHeight
// 最小滾動距離
this.minTransalteY = -this.imageHeight + RESERVED_HEIGHT
// 列表距離頂部偏移 = 背景圖實際高度
this.$refs.list.$el.style.top = `${this.imageHeight}px`
},
methods: {
handlePlaylist (playlist) {
const bottom = playlist.length > 0 ? '60px' : ''
this.$refs.list.$el.style.bottom = bottom
this.$refs.list.refresh()
},
scroll (pos) {
this.scrollY = pos.y
},
back () {
this.$router.back()
},
selectItem (item, index) {
this.selectPlay({
list: this.songs,
index
})
},
random () {
this.randomPlay({
list: this.songs
})
},
...mapActions([
'selectPlay',
'randomPlay'
])
},
watch: {
// 監聽 scroll 滾動距離
scrollY (newVal) {
// 歌手列表最大滾動距離
let translateY = Math.max(this.minTransalteY, newVal)
// 背景圖縮放比例
let scale = 1
// 背景圖zIndex
let zIndex = 0
// 背景圖虛化值
let blur = 0
const percent = Math.abs(newVal / this.imageHeight)
// 歌手列表下拉
if (newVal > 0) {
scale = 1 + percent
zIndex = 10
} else {
blur = Math.min(20, percent * 20)
}
// 歌手列表跟隨滾動
this.$refs.layer.style[transform] = `translate3d(0,${translateY}px,0)`
// 背景圖漸變
this.$refs.filter.style[backdrop] = `blur(${blur}px)`
// 歌手列表上拉
if (newVal < this.minTransalteY) {
zIndex = 10
this.$refs.bgImage.style.paddingTop = 0
this.$refs.bgImage.style.height = `${RESERVED_HEIGHT}px`
this.$refs.playBtn.style.display = 'none'
} else {
// 歌手列表下拉
this.$refs.bgImage.style.paddingTop = '70%'
this.$refs.bgImage.style.height = 0
this.$refs.playBtn.style.display = ''
}
// 背景圖縮放和 zIndex 改變
this.$refs.bgImage.style[transform] = `scale(${scale})`
this.$refs.bgImage.style.zIndex = zIndex
}
},
components: {
Scroll,
Loading,
SongList
}
}
</script>
<style scoped lang="stylus" rel="stylesheet/stylus">
@import "~common/stylus/variable"
@import "~common/stylus/mixin"
.music-list
position: fixed
z-index: 100
top: 0
left: 0
bottom: 0
right: 0
background: $color-background
.back
position absolute
top: 0
left: 6px
z-index: 50
.icon-back
display: block
padding: 10px
font-size: $font-size-large-x
color: $color-theme
.title
position: absolute
top: 0
left: 10%
z-index: 40
width: 80%
no-wrap()
text-align: center
line-height: 40px
font-size: $font-size-large
color: $color-text
.bg-image
position: relative
width: 100%
height: 0
padding-top: 70%
transform-origin: top
background-size: cover
.play-wrapper
position: absolute
bottom: 20px
z-index: 50
width: 100%
.play
box-sizing: border-box
width: 135px
padding: 7px 0
margin: 0 auto
text-align: center
border: 1px solid $color-theme
color: $color-theme
border-radius: 100px
font-size: 0
.icon-play
display: inline-block
vertical-align: middle
margin-right: 6px
font-size: $font-size-medium-x
.text
display: inline-block
vertical-align: middle
font-size: $font-size-small
.filter
position: absolute
top: 0
left: 0
width: 100%
height: 100%
background: rgba(7, 17, 27, 0.4)
.bg-layer
position: relative
height: 100%
background: $color-background
.list
position: absolute
top: 0
bottom: 0
width: 100%
background: $color-background
.song-list-wrapper
padding: 20px 30px
.loading-container
position: absolute
width: 100%
top: 50%
transform: translateY(-50%)
</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滾動
- 監聽局部滾動