39 lines
712 B
Vue
39 lines
712 B
Vue
<template>
|
|
<view class="videoTop">
|
|
<image :src="url" mode="aspectFill" class="video"></image>
|
|
<image src="/static/videoPlay.png" mode="aspectFill" class="play-video"></image>
|
|
</view>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.videoTop{
|
|
width: 100%;
|
|
height: 284rpx;
|
|
margin-bottom: 20rpx;
|
|
position: relative;
|
|
.video{
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 9;
|
|
}
|
|
.play-video {
|
|
position: absolute;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
z-index: 19;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name:"videoTop",
|
|
data(){
|
|
return {
|
|
}
|
|
},
|
|
props:['url'],
|
|
}
|
|
</script> |