日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術(shù)文章
文章詳情頁

基于vue實現(xiàn)探探滑動組件功能

瀏覽:209日期:2023-01-17 17:22:29

前言

嗨,說起探探想必各位程序汪都不陌生(畢竟妹子很多),能在上面絲滑的翻牌子,探探的的堆疊滑動組件起到了關(guān)鍵的作用,下面就來看看如何用vue寫一個探探的堆疊組件 ?

一. 功能分析

簡單使用下探探會發(fā)現(xiàn),堆疊滑動的功能很簡單,用一張圖概括就是:

基于vue實現(xiàn)探探滑動組件功能

簡單歸納下里面包含的基本功能點:

圖片的堆疊 圖片第一張的滑動 條件成功后的滑出,條件失敗后的回彈 滑出后下一張圖片堆疊到頂部

體驗優(yōu)化

根據(jù)觸摸點的不同,滑動時首圖有不同角度偏移

偏移面積判定是否成功滑出

二. 具體實現(xiàn)

有了歸納好的功能點,我們實現(xiàn)組件的思路會更清晰

1. 堆疊效果

堆疊圖片效果在網(wǎng)上有大量的實例,實現(xiàn)的方法大同小異,主要通過在父層設定perspective及perspective-origin,來實現(xiàn)子層的透視,子層設定好translate3d Z軸數(shù)值即可模擬出堆疊效果,具體代碼如下

// 圖片堆疊dom <!--opacity: 0 隱藏我們不想看到的stack-item層級--> <!--z-index: -1 調(diào)整stack-item層級'--><ul class='stack'> <li style='transform: translate3d(0px, 0px, 0px);opacity: 1;z-index: 10;'><img src='http://www.b3g6.com/bcjs/1.png' alt='01'></li> <li style='transform: translate3d(0px, 0px, -60px);opacity: 1;z-index: 1'><img src='http://www.b3g6.com/bcjs/2.png' alt='02'></li> <li style='transform: translate3d(0px, 0px, -120px);opacity: 1;z-index: 1'><img src='http://www.b3g6.com/bcjs/3.png' alt='03'></li> <li style='transform: translate3d(0px, 0px, -180px);opacity: 0;z-index: -1'><img src='http://www.b3g6.com/bcjs/4.png' alt='04'></li> <li style='transform: translate3d(0px, 0px, -180px);opacity: 0;z-index: -1'><img src='http://www.b3g6.com/bcjs/5.png' alt='05'></li></ul><style>.stack { width: 100%; height: 100%; position: relative; perspective: 1000px; //子元素視距 perspective-origin: 50% 150%; //子元素透視位置 -webkit-perspective: 1000px; -webkit-perspective-origin: 50% 150%; margin: 0; padding: 0; } .stack-item{ background: #fff; height: 100%; width: 100%; border-radius: 4px; text-align: center; overflow: hidden; } .stack-item img { width: 100%; display: block; pointer-events: none; }</style>

上面只是一組靜態(tài)代碼,我們希望得到的是vue組件,所以需要先建立一個組件模板stack.vue,在模板中我們可以使用v-for,遍歷出stack節(jié)點,使用:style 來修改各個item的style,代碼如下

<template> <ul class='stack'> <li v-for='(item, index) in pages' :style='[transform(index)]'> <img :src='http://www.b3g6.com/bcjs/item.src'> </li> </ul></template><script>export default { props: { // pages數(shù)據(jù)包含基礎的圖片數(shù)據(jù) pages: { type: Array, default: [] } }, data () { return { // basicdata數(shù)據(jù)包含組件基本數(shù)據(jù) basicdata: { currentPage: 0 // 默認首圖的序列 }, // temporaryData數(shù)據(jù)包含組件臨時數(shù)據(jù) temporaryData: { opacity: 1, // 記錄opacity zIndex: 10, // 記錄zIndex visible: 3 // 記錄默認顯示堆疊數(shù)visible } } }, methods: { // 遍歷樣式 transform (index) { if (index >= this.basicdata.currentPage) { let style = {} let visible = this.temporaryData.visible let perIndex = index - this.basicdata.currentPage // visible可見數(shù)量前滑塊的樣式 if (index <= this.basicdata.currentPage + visible - 1) { style[’opacity’] = ’1’ style[’transform’] = ’translate3D(0,0,’ + -1 * perIndex * 60 + ’px’ + ’)’ style[’zIndex’] = visible - index + this.basicdata.currentPage style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } else { style[’zIndex’] = ’-1’ style[’transform’] = ’translate3D(0,0,’ + -1 * visible * 60 + ’px’ + ’)’ } return style } } }}</script>

關(guān)鍵點

style可以綁定對象的同時,也可以綁定數(shù)組和函數(shù),這在遍歷的時候很有用

最基本的dom結(jié)構(gòu)已經(jīng)構(gòu)建完畢,下一步是讓首張圖片“動”起來

2. 圖片滑動

圖片滑動效果,在很多場景中都有出現(xiàn),其原理無非是監(jiān)聽touchs事件,得到位移,再通過translate3D改變目標位移,因此我們要實現(xiàn)的步驟如下

對stack進行touchs事件的綁定 監(jiān)聽并儲存手勢位置變化的數(shù)值 改變首圖css屬性中translate3D的x,y值

具體實現(xiàn)

在vue框架中,不建議直接操作節(jié)點,而是通過指令v-on對元素進行綁定,因此我們將綁定都寫在v-for遍歷里,通過index進行判斷其是否是首圖,再使用:style修改首頁的樣式,具體代碼如下:

<template> <ul class='stack'> <li v-for='(item, index) in pages' : @touchstart.stop.capture='touchstart' @touchmove.stop.capture='touchmove' @touchend.stop.capture='touchend' @mousedown.stop.capture='touchstart' @mouseup.stop.capture='touchend' @mousemove.stop.capture='touchmove'> <img :src='http://www.b3g6.com/bcjs/item.src'> </li> </ul></template><script>export default { props: { // pages數(shù)據(jù)包含基礎的圖片數(shù)據(jù) pages: { type: Array, default: [] } }, data () { return { // basicdata數(shù)據(jù)包含組件基本數(shù)據(jù) basicdata: { start: {}, // 記錄起始位置 end: {}, // 記錄終點位置 currentPage: 0 // 默認首圖的序列 }, // temporaryData數(shù)據(jù)包含組件臨時數(shù)據(jù) temporaryData: { poswidth: ’’, // 記錄位移 posheight: ’’, // 記錄位移 tracking: false // 是否在滑動,防止多次操作,影響體驗 } } }, methods: { touchstart (e) { if (this.temporaryData.tracking) { return } // 是否為touch if (e.type === ’touchstart’) { if (e.touches.length > 1) { this.temporaryData.tracking = false return } else { // 記錄起始位置 this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.targetTouches[0].clientX this.basicdata.start.y = e.targetTouches[0].clientY this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } // pc操作 } else { this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.clientX this.basicdata.start.y = e.clientY this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } this.temporaryData.tracking = true }, touchmove (e) { // 記錄滑動位置 if (this.temporaryData.tracking && !this.temporaryData.animation) { if (e.type === ’touchmove’) { this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } else { this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } // 計算滑動值 this.temporaryData.poswidth = this.basicdata.end.x - this.basicdata.start.x this.temporaryData.posheight = this.basicdata.end.y - this.basicdata.start.y } }, touchend (e) { this.temporaryData.tracking = false // 滑動結(jié)束,觸發(fā)判斷 }, // 非首頁樣式切換 transform (index) { if (index > this.basicdata.currentPage) { let style = {} let visible = 3 let perIndex = index - this.basicdata.currentPage // visible可見數(shù)量前滑塊的樣式 if (index <= this.basicdata.currentPage + visible - 1) { style[’opacity’] = ’1’ style[’transform’] = ’translate3D(0,0,’ + -1 * perIndex * 60 + ’px’ + ’)’ style[’zIndex’] = visible - index + this.basicdata.currentPage style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } else { style[’zIndex’] = ’-1’ style[’transform’] = ’translate3D(0,0,’ + -1 * visible * 60 + ’px’ + ’)’ } return style } }, // 首頁樣式切換 transformIndex (index) { // 處理3D效果 if (index === this.basicdata.currentPage) { let style = {} style[’transform’] = ’translate3D(’ + this.temporaryData.poswidth + ’px’ + ’,’ + this.temporaryData.posheight + ’px’ + ’,0px)’ style[’opacity’] = 1 style[’zIndex’] = 10 return style } } }}</script>

3. 條件成功后的滑出,條件失敗后的回彈

條件的觸發(fā)判斷是在touchend/mouseup后進行,在這里我們先用簡單的條件進行判定,同時給予首圖彈出及回彈的效果,代碼如下

<template> <ul class='stack'> <li v-for='(item, index) in pages' : @touchmove.stop.capture='touchmove' @touchstart.stop.capture='touchstart' @touchend.stop.capture='touchend' @mousedown.stop.capture='touchstart' @mouseup.stop.capture='touchend' @mousemove.stop.capture='touchmove'> <img :src='http://www.b3g6.com/bcjs/item.src'> </li> </ul></template><script>export default { props: { // pages數(shù)據(jù)包含基礎的圖片數(shù)據(jù) pages: { type: Array, default: [] } }, data () { return { // basicdata數(shù)據(jù)包含組件基本數(shù)據(jù) basicdata: { start: {}, // 記錄起始位置 end: {}, // 記錄終點位置 currentPage: 0 // 默認首圖的序列 }, // temporaryData數(shù)據(jù)包含組件臨時數(shù)據(jù) temporaryData: { poswidth: ’’, // 記錄位移 posheight: ’’, // 記錄位移 tracking: false, // 是否在滑動,防止多次操作,影響體驗 animation: false, // 首圖是否啟用動畫效果,默認為否 opacity: 1 // 記錄首圖透明度 } } }, methods: { touchstart (e) { if (this.temporaryData.tracking) { return } // 是否為touch if (e.type === ’touchstart’) { if (e.touches.length > 1) { this.temporaryData.tracking = false return } else { // 記錄起始位置 this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.targetTouches[0].clientX this.basicdata.start.y = e.targetTouches[0].clientY this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } // pc操作 } else { this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.clientX this.basicdata.start.y = e.clientY this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } this.temporaryData.tracking = true this.temporaryData.animation = false }, touchmove (e) { // 記錄滑動位置 if (this.temporaryData.tracking && !this.temporaryData.animation) { if (e.type === ’touchmove’) { this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } else { this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } // 計算滑動值 this.temporaryData.poswidth = this.basicdata.end.x - this.basicdata.start.x this.temporaryData.posheight = this.basicdata.end.y - this.basicdata.start.y } }, touchend (e) { this.temporaryData.tracking = false this.temporaryData.animation = true // 滑動結(jié)束,觸發(fā)判斷 // 簡單判斷滑動寬度超出100像素時觸發(fā)滑出 if (Math.abs(this.temporaryData.poswidth) >= 100) { // 最終位移簡單設定為x軸200像素的偏移 let ratio = Math.abs(this.temporaryData.posheight / this.temporaryData.poswidth) this.temporaryData.poswidth = this.temporaryData.poswidth >= 0 ? this.temporaryData.poswidth + 200 : this.temporaryData.poswidth - 200 this.temporaryData.posheight = this.temporaryData.posheight >= 0 ? Math.abs(this.temporaryData.poswidth * ratio) : -Math.abs(this.temporaryData.poswidth * ratio) this.temporaryData.opacity = 0 // 不滿足條件則滑入 } else { this.temporaryData.poswidth = 0 this.temporaryData.posheight = 0 } }, // 非首頁樣式切換 transform (index) { if (index > this.basicdata.currentPage) { let style = {} let visible = 3 let perIndex = index - this.basicdata.currentPage // visible可見數(shù)量前滑塊的樣式 if (index <= this.basicdata.currentPage + visible - 1) { style[’opacity’] = ’1’ style[’transform’] = ’translate3D(0,0,’ + -1 * perIndex * 60 + ’px’ + ’)’ style[’zIndex’] = visible - index + this.basicdata.currentPage style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } else { style[’zIndex’] = ’-1’ style[’transform’] = ’translate3D(0,0,’ + -1 * visible * 60 + ’px’ + ’)’ } return style } }, // 首頁樣式切換 transformIndex (index) { // 處理3D效果 if (index === this.basicdata.currentPage) { let style = {} style[’transform’] = ’translate3D(’ + this.temporaryData.poswidth + ’px’ + ’,’ + this.temporaryData.posheight + ’px’ + ’,0px)’ style[’opacity’] = this.temporaryData.opacity style[’zIndex’] = 10 if (this.temporaryData.animation) { style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } return style } } }}</script>

4. 滑出后下一張圖片堆疊到頂部

重新堆疊是組件最后一個功能,同時也是最重要和復雜的功能。在我們的代碼里,stack-item的排序依賴綁定:style的transformIndex和transform函數(shù),函數(shù)里判定的條件是currentPage,那是不是改變currentPage,讓其+1,即可完成重新堆疊呢?

答案沒有那么簡單,因為我們滑出是動畫效果,會進行300ms的時間,而currentPage變化引起的重排,會立即變化,打斷動畫的進行。因此我們需要先修改transform函數(shù)的排序條件,后改變currentPage。

具體實現(xiàn)

修改transform函數(shù)排序條件 讓currentPage+1 添加onTransitionEnd事件,在滑出結(jié)束后,重新放置stack列表中

代碼如下:

<template> <ul class='stack'> <li v-for='(item, index) in pages' : @touchmove.stop.capture='touchmove' @touchstart.stop.capture='touchstart' @touchend.stop.capture='touchend' @mousedown.stop.capture='touchstart' @mouseup.stop.capture='touchend' @mousemove.stop.capture='touchmove' @webkit-transition-end='onTransitionEnd' @transitionend='onTransitionEnd' > <img :src='http://www.b3g6.com/bcjs/item.src'> </li> </ul></template><script>export default { props: { // pages數(shù)據(jù)包含基礎的圖片數(shù)據(jù) pages: { type: Array, default: [] } }, data () { return { // basicdata數(shù)據(jù)包含組件基本數(shù)據(jù) basicdata: { start: {}, // 記錄起始位置 end: {}, // 記錄終點位置 currentPage: 0 // 默認首圖的序列 }, // temporaryData數(shù)據(jù)包含組件臨時數(shù)據(jù) temporaryData: { poswidth: ’’, // 記錄位移 posheight: ’’, // 記錄位移 lastPosWidth: ’’, // 記錄上次最終位移 lastPosHeight: ’’, // 記錄上次最終位移 tracking: false, // 是否在滑動,防止多次操作,影響體驗 animation: false, // 首圖是否啟用動畫效果,默認為否 opacity: 1, // 記錄首圖透明度 swipe: false // onTransition判定條件 } } }, methods: { touchstart (e) { if (this.temporaryData.tracking) { return } // 是否為touch if (e.type === ’touchstart’) { if (e.touches.length > 1) { this.temporaryData.tracking = false return } else { // 記錄起始位置 this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.targetTouches[0].clientX this.basicdata.start.y = e.targetTouches[0].clientY this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } // pc操作 } else { this.basicdata.start.t = new Date().getTime() this.basicdata.start.x = e.clientX this.basicdata.start.y = e.clientY this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } this.temporaryData.tracking = true this.temporaryData.animation = false }, touchmove (e) { // 記錄滑動位置 if (this.temporaryData.tracking && !this.temporaryData.animation) { if (e.type === ’touchmove’) { this.basicdata.end.x = e.targetTouches[0].clientX this.basicdata.end.y = e.targetTouches[0].clientY } else { this.basicdata.end.x = e.clientX this.basicdata.end.y = e.clientY } // 計算滑動值 this.temporaryData.poswidth = this.basicdata.end.x - this.basicdata.start.x this.temporaryData.posheight = this.basicdata.end.y - this.basicdata.start.y } }, touchend (e) { this.temporaryData.tracking = false this.temporaryData.animation = true // 滑動結(jié)束,觸發(fā)判斷 // 簡單判斷滑動寬度超出100像素時觸發(fā)滑出 if (Math.abs(this.temporaryData.poswidth) >= 100) { // 最終位移簡單設定為x軸200像素的偏移 let ratio = Math.abs(this.temporaryData.posheight / this.temporaryData.poswidth) this.temporaryData.poswidth = this.temporaryData.poswidth >= 0 ? this.temporaryData.poswidth + 200 : this.temporaryData.poswidth - 200 this.temporaryData.posheight = this.temporaryData.posheight >= 0 ? Math.abs(this.temporaryData.poswidth * ratio) : -Math.abs(this.temporaryData.poswidth * ratio) this.temporaryData.opacity = 0 this.temporaryData.swipe = true // 記錄最終滑動距離 this.temporaryData.lastPosWidth = this.temporaryData.poswidth this.temporaryData.lastPosHeight = this.temporaryData.posheight // currentPage+1 引發(fā)排序變化 this.basicdata.currentPage += 1 // currentPage切換,整體dom進行變化,把第一層滑動置零 this.$nextTick(() => { this.temporaryData.poswidth = 0 this.temporaryData.posheight = 0 this.temporaryData.opacity = 1 }) // 不滿足條件則滑入 } else { this.temporaryData.poswidth = 0 this.temporaryData.posheight = 0 this.temporaryData.swipe = false } }, onTransitionEnd (index) { // dom發(fā)生變化后,正在執(zhí)行的動畫滑動序列已經(jīng)變?yōu)樯弦粚? if (this.temporaryData.swipe && index === this.basicdata.currentPage - 1) { this.temporaryData.animation = true this.temporaryData.lastPosWidth = 0 this.temporaryData.lastPosHeight = 0 this.temporaryData.swipe = false } }, // 非首頁樣式切換 transform (index) { if (index > this.basicdata.currentPage) { let style = {} let visible = 3 let perIndex = index - this.basicdata.currentPage // visible可見數(shù)量前滑塊的樣式 if (index <= this.basicdata.currentPage + visible - 1) { style[’opacity’] = ’1’ style[’transform’] = ’translate3D(0,0,’ + -1 * perIndex * 60 + ’px’ + ’)’ style[’zIndex’] = visible - index + this.basicdata.currentPage style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } else { style[’zIndex’] = ’-1’ style[’transform’] = ’translate3D(0,0,’ + -1 * visible * 60 + ’px’ + ’)’ } return style // 已滑動模塊釋放后 } else if (index === this.basicdata.currentPage - 1) { let style = {} // 繼續(xù)執(zhí)行動畫 style[’transform’] = ’translate3D(’ + this.temporaryData.lastPosWidth + ’px’ + ’,’ + this.temporaryData.lastPosHeight + ’px’ + ’,0px)’ style[’opacity’] = ’0’ style[’zIndex’] = ’-1’ style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ return style } }, // 首頁樣式切換 transformIndex (index) { // 處理3D效果 if (index === this.basicdata.currentPage) { let style = {} style[’transform’] = ’translate3D(’ + this.temporaryData.poswidth + ’px’ + ’,’ + this.temporaryData.posheight + ’px’ + ’,0px)’ style[’opacity’] = this.temporaryData.opacity style[’zIndex’] = 10 if (this.temporaryData.animation) { style[’transitionTimingFunction’] = ’ease’ style[’transitionDuration’] = 300 + ’ms’ } return style } } }}</script>

ok~ 完成了上面的四步,堆疊組件的基本功能就已經(jīng)實現(xiàn),快來看看效果吧

基于vue實現(xiàn)探探滑動組件功能

堆疊滑動效果已經(jīng)出來了,但是探探在體驗上,還增加了觸碰角度偏移,以及判定滑出面積比例

角度偏移的原理,是在用戶每次進行touch時,記錄用戶觸碰位置,計算出最大的偏移角度,在滑動出現(xiàn)位移時,線性增加角度以至最大的偏移角度。

使用在stack中具體要做的是:

touchmove中計算出所需角度和方向

touchend及onTransitionEnd中將角度至零

判定滑出面積比例,主要通過偏移量計算出偏移面積,從而得到面積比例,完成判斷

完整的代碼和demo可以在github上查看源碼,這里就不貼出來了

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標簽: Vue
相關(guān)文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
日本亚洲欧洲无免费码在线| 日韩成人亚洲| 国产美女精品| 亚洲精品极品| 国产剧情在线观看一区| 九九九精品视频| 日韩黄色大片| 伊人久久大香伊蕉在人线观看热v| 亚洲三级精品| 欧美国产三级| 激情五月综合| 中文字幕av亚洲精品一部二部| 亚洲精品免费观看| 鲁大师精品99久久久| 久久久777| 日韩av在线免费观看不卡| 国产va免费精品观看精品视频| 999久久久精品国产| 日韩精品久久理论片| 国产精选在线| 亚洲一级大片| 久久一区二区三区电影| 欧美欧美黄在线二区| 成人羞羞视频播放网站| **爰片久久毛片| 欧美在线亚洲| 精品黄色一级片| 亚洲激情社区| 精品三级国产| 无码日韩精品一区二区免费| 国产一区二区三区久久| 日日夜夜免费精品视频| 亚洲欧洲高清| 久久精品日韩欧美| 亚洲精品激情| 亚洲激情不卡| 欧美成人亚洲| 日本久久成人网| 97在线精品| 麻豆国产欧美日韩综合精品二区| 亚洲综合专区| 亚洲一卡久久| 亚洲性图久久| 亚洲手机在线| 欧美日韩中文字幕一区二区三区| 国产va免费精品观看精品视频| 国产亚洲字幕| 国产乱码精品一区二区三区四区| 日韩精品亚洲专区在线观看| 久久不射网站| 中文字幕免费精品| 视频一区中文字幕精品| 免费日本视频一区| 免费人成精品欧美精品| 视频一区二区中文字幕| 伊人久久亚洲| 日韩av影院| 奇米色欧美一区二区三区| 日本综合精品一区| 日韩avvvv在线播放| 国产精品最新| 国模精品一区| 亚洲国内精品| 亚洲毛片在线免费| 免费在线亚洲| 久久久成人网| 亚洲一区欧美| 开心激情综合| 韩日一区二区三区| 天堂久久一区| 美女视频一区在线观看| 日韩伦理在线一区| jiujiure精品视频播放| 日韩影院在线观看| 久久香蕉网站| 香蕉精品视频在线观看| 日韩精品久久久久久| 欧洲一级精品| 麻豆精品视频在线观看视频| 欧美高清一区| 日韩国产欧美一区二区三区| 精品国产午夜肉伦伦影院| 日本亚州欧洲精品不卡| 欧美中文日韩| 国产毛片一区| 老司机精品久久| 免费av一区| 蜜臀国产一区| 亚洲综合电影| 中文字幕系列一区| 日韩一区二区三区免费播放| 国产高清亚洲| 另类综合日韩欧美亚洲| 丰满少妇一区| 天堂av在线| 久久五月天小说| 亚洲视频播放| 91精品国产乱码久久久久久久| 国产欧美午夜| 91麻豆精品激情在线观看最新 | 国产精品丝袜xxxxxxx| 国产精品videosex极品| 18国产精品| 日本欧美一区| 日韩激情一区二区| 日韩一区中文| 日韩av不卡一区二区| 久久国产人妖系列| 国产日产精品_国产精品毛片| 亚洲视频国产| 日本va欧美va精品| 国产日本精品| 国产成人精品福利| 日韩一区电影| 精品成人免费一区二区在线播放| 欧美精品97| 蜜桃精品视频| 激情久久99| 久久久久国产| 亚洲精品中文字幕乱码| 日韩在线a电影| 日韩精品免费一区二区夜夜嗨| 日韩成人午夜精品| 久久精品日韩欧美| 成人羞羞视频播放网站| 蜜臀va亚洲va欧美va天堂| 97久久亚洲| 精品日韩视频| 欧美综合二区| 久久不见久久见中文字幕免费| 国产精品久久久久久久久久久久久久久| 国产日韩一区二区三免费高清| 麻豆视频久久| 91久久在线| 免费观看亚洲天堂| 日韩另类视频| 日本不卡在线视频| 成人在线黄色| 日韩一区二区三区精品| 久久久久久网| 日韩福利视频导航| 免费一二一二在线视频| 亚洲免费资源| 亚洲午夜在线| 麻豆一区二区三| 日韩三级精品| 色婷婷综合网| 国产亚洲精品精品国产亚洲综合| 日本午夜大片a在线观看| 日本欧美一区二区| 99精品在线免费在线观看| 国产日韩免费| 中文字幕中文字幕精品| 激情综合自拍| 98精品视频| 国产精品成人**免费视频 | 久久久蜜桃一区二区人| 国产日韩一区| 日韩美女精品| 国产91一区| 色爱综合网欧美| 国产精品最新| 麻豆精品av| 久久精品二区亚洲w码| 国产精品探花在线观看| 欧美日韩 国产精品| 亚洲日韩中文字幕一区| 亚洲一区不卡| 婷婷成人在线| 久久精品亚洲人成影院| 香蕉成人av| 欧洲av不卡| 欧美好骚综合网| 国产在线观看www| 久久不见久久见中文字幕免费| 亚州av日韩av| 日韩精品乱码av一区二区| 国产剧情在线观看一区| 国产日韩欧美高清免费| 精品欠久久久中文字幕加勒比| 粉嫩av一区二区三区四区五区 | 亚洲免费一区三区| 亚洲最大av| 91精品国产自产观看在线| 国产精品最新| 老牛影视精品| 夜夜嗨av一区二区三区网站四季av| 欧美日韩精品免费观看视频完整| 日韩视频二区| 亚洲免费专区| 国产亚洲高清在线观看| 美女av一区| 亚洲精品97| 欧美亚洲tv| 色偷偷色偷偷色偷偷在线视频| 国产91在线精品| 日韩视频二区| 精品五月天堂| 99国产一区| 久久精品五月|