修改原生拖拽修改
parent
30f1f87726
commit
26571501f7
|
|
@ -287,6 +287,7 @@
|
|||
}
|
||||
.comment-reply-text {
|
||||
color: #ccc;
|
||||
font-size: 28rpx;
|
||||
padding: 0 10rpx;
|
||||
}
|
||||
.comment-operation {
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
<!-- 视频列表 -->
|
||||
<swiper class="swiper-container" :key="'top-or-buttom-' + swiper_key" :style="swiperStyle" :duration="500" :vertical="true" :circular="close_circular ? false : true" :skip-hidden-item-layout="true" :current="current_index" easing-function="linear" @transition="on_transition" @change="handle_swiper_change">
|
||||
<swiper-item v-for="(video_item, index) in display_video_list" :key="video_item.id">
|
||||
<view class="video-container pr" @tap.stop="toggle_play_pause" @touchstart.prevent="handle_swiper_touch_start" @touchmove.prevent="handle_swiper_touch_move" @touchend="handle_swiper_touch_end">
|
||||
<view class="video-container pr" @tap.stop="toggle_play_pause" @touchstart="handle_swiper_touch_start" @touchmove="handle_swiper_touch_move" @touchend="handle_swiper_touch_end">
|
||||
<view class="video-bg" :style="!isEmpty(video_item.cover) ? 'background-image: url(' + video_item.cover + ')' : ''"></view>
|
||||
|
||||
<video class="video" :src="video_item.video_url" :poster="video_item.cover" :id="`video_${index}`" :loop="true" :show-fullscreen-btn="false" :show-center-play-btn="false" :show-play-btn="false" :controls="false" :show-mute-btn="true" object-fit="contain" @timeupdate="handle_time_update" @play="handle_play"></video>
|
||||
|
|
@ -937,10 +937,10 @@
|
|||
} else if (this.current_index == 1) { // 索引为1时,为确保无限轮播正常,需要改变数据插入顺序
|
||||
list = this.update_video_list([-1, 0, 1]);
|
||||
} else {
|
||||
if (this.current_video_index == this.video_data_list.length - 1) {
|
||||
list = this.update_video_list([-2, -1, 0]);
|
||||
} else {
|
||||
list = this.update_video_list([1, -1, 0]);
|
||||
if (this.current_video_index == this.video_data_list.length - 1) {
|
||||
list = this.update_video_list([-2, -1, 0]);
|
||||
} else {
|
||||
list = this.update_video_list([1, -1, 0]);
|
||||
}
|
||||
}
|
||||
this.setData({
|
||||
|
|
|
|||
Loading…
Reference in New Issue