faceSwapVideo.vue 562 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="cut-video-container">
  3. <iframe
  4. ref="iframeRef"
  5. :src="iframeUrl"
  6. frameborder="0"
  7. width="100%"
  8. height="100%"
  9. allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
  10. allowfullscreen
  11. ></iframe>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. iframeUrl: 'https://ai-app.gloria.com.cn/change-face/',
  19. }
  20. }
  21. };
  22. </script>
  23. <style scoped>
  24. .cut-video-container {
  25. width: 100%;
  26. height: 100%;
  27. overflow: hidden;
  28. }
  29. </style>