Spaces:
Running
Running
| import gradio as gr | |
| html_content = """ | |
| <iframe | |
| src="https://selfit-camera-omni-image-editor.hf.space" | |
| style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; border: none; z-index: 999999;" | |
| allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; clipboard-read; clipboard-write; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; sync-xhr; usb; vr; wake-lock; xr-spatial-tracking"> | |
| </iframe> | |
| """ | |
| with gr.Blocks() as demo: | |
| gr.HTML(html_content) | |
| if __name__ == "__main__": | |
| demo.launch() |