deming/pageC/components/merchant/video-top.vue

49 lines
887 B
Vue
Raw Normal View History

2020-07-06 01:10:34 +00:00
<template>
2020-08-13 09:26:26 +00:00
<view class="videoTop">
2020-08-13 07:41:03 +00:00
<image :src="url" mode="aspectFill" class="video"></image>
2020-08-20 06:46:57 +00:00
<view class="backs"></view>
2020-08-13 07:41:03 +00:00
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
2020-07-06 01:10:34 +00:00
</view>
</template>
<style lang="scss" scoped>
.videoTop{
width: 100%;
height: 284rpx;
margin-bottom: 20rpx;
2020-08-13 07:41:03 +00:00
position: relative;
.video{
position: absolute;
2020-07-06 01:10:34 +00:00
width: 100%;
height: 100%;
2020-08-13 07:41:03 +00:00
z-index: 9;
2020-07-06 01:10:34 +00:00
}
2020-08-20 06:46:57 +00:00
.backs {
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.35);
z-index: 9;
}
2020-08-13 07:41:03 +00:00
.play-video {
position: absolute;
width: 100rpx;
height: 100rpx;
z-index: 19;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
2020-07-06 01:10:34 +00:00
}
</style>
<script>
export default {
name:"videoTop",
data(){
return {
}
},
2020-08-13 07:41:03 +00:00
props:['url'],
2020-07-06 01:10:34 +00:00
}
</script>