| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="cut-video-container">
- <iframe
- ref="iframeRef"
- :src="iframeUrl"
- frameborder="0"
- width="100%"
- height="100%"
- allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
- allowfullscreen
- ></iframe>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- iframeUrl: 'https://ai-app.gloria.com.cn/change-face/',
- }
- }
- };
- </script>
- <style scoped>
- .cut-video-container {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- </style>
|