indexVideo.vue 527 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="video-box">
  3. <video
  4. id="story-video"
  5. controls="controls"
  6. preload="auto"
  7. poster="http://img.visney.cn/img/banner_img/story-bottom-vedios1.png"
  8. >
  9. <source src="http://img.visney.cn/img/video/story.mp4">
  10. </video>
  11. </div>
  12. </template>
  13. <style scoped>
  14. .video-box {
  15. overflow: hidden;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. .video-box video {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. </style>
  24. <script>
  25. export default {
  26. name: "indexVideo",
  27. };
  28. </script>