You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <view class="videoBox"> <view class="back"> <topNavbar title=""></topNavbar> </view> <video src="http://vjs.zencdn.net/v/oceans.mp4"></video> </view> <view class="pad"> <view class="card" style="margin: 28rpx 0 24rpx 0;"> <view class="info"> <view class="name">视频名字</view> <view class="date">2023/08/08</view> </view> </view> <view class="operate"> <view class="operateItem"> <view class="icon"> <image src="/static/images/index/dianzan_nor.png" mode=""></image> <!-- <image src="/static/images/index/dianzan_cli.png" mode=""></image> --> </view> <view class="txt">点赞</view> </view> <view class="operateItem"> <view class="icon"> <image src="/static/images/index/shoucang_nor.png" mode=""></image> <!-- <image src="/static/images/index/shoucang_cli.png" mode=""></image> --> </view> <view class="txt">收藏</view> </view> <view class="operateItem"> <view class="icon"> <image src="/static/images/index/fenxiang_nor.png" mode=""></image> </view> <view class="txt">分享</view> </view> </view> <view class="videolist"> <view class="flex-b"> <view class="h1">相关推荐</view> <moreRight text="更多"></moreRight> </view> <view class="ul"> <view class="li" v-for="(item,index) in 10" :key="index" @click="$goPage('/pages/indexEntry/publicVideo/videoDetail/videoDetail')"> <videoItem></videoItem> </view> </view> </view> </view> </view> </template>
<script> import videoItem from '../comp/videoItem' export default { components: { videoItem } } </script>
<style lang="scss" scoped> .h1 { line-height: 100rpx; } .info { padding: 28rpx; .name { font-size: 34rpx; color: #363A44; font-weight: 500; } .date { font-size: 28rpx; color: #686B73; margin-top: 4rpx; } } .operate { display: flex; justify-content: space-between; .operateItem { width: 188rpx; height: 132rpx; background: #FFFFFF; border-radius: 16rpx; display: flex; flex-direction: column; align-items: center; justify-content: center; .icon { width: 48rpx; height: 48rpx; } .txt { font-size: 24rpx; color: #333; font-weight: 500; } } } .videoBox { width: 100%; height: 492rpx; position: relative; .back { position: absolute; left: 0; top: 0; } video { width: 100%; height: 100%; display: block; } } .ul { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; .li { width: 100%; width: 48%; height: 260rpx; background: #FFFFFF; box-shadow: 0px 8rpx 20rpx 0px rgba(0,0,0,0.04), 2rpx 2rpx 8rpx 0px rgba(0,0,0,0.06); border-radius: 16rpx; margin-bottom: 24rpx; padding: 16rpx; } } </style>
|