123456789101112131415161718192021222324 |
- <template>
- <view class="container">
- <video class="video" src="http://shicai.liuniu946.com/img/jiaocheng.mp4"></video>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .container {
- width: 100%;
- /* #ifdef H5 */
- height: calc( 100vh - 44px);
- /* #endif */
- /* #ifdef MP */
- height: 100vh;
- /* #endif */
- .video {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|