Editing Images, Video, and Music
To replace the default background video, logo, images or music:
Navigate to the
uifolder.Replace the existing files in their respective folders with your own, using the same file names.
Images: Use the
.pngformat.Video: Use the
.webmformat.Music: Use the
.mp3format.
If you'd like to use a YouTube video as the background, follow these steps:
Open the
ui/loading.htmlfile in your code editor.Replace the video element (lines 12 to 14) with the following code snippet:
<iframe id="video" src="https://www.youtube.com/embed/[VIDEO_ID]?controls=0&modestbranding=1&rel=0&showinfo=0&autoplay=1" frameborder="0" allow="autoplay;" allowfullscreen> </iframe>Replace
[VIDEO_ID]with the desired video's ID.You can find the video ID in the YouTube video URL. For example, for the link:
https://www.youtube.com/watch?v=dQw4w9WgXcQThe video ID is
dQw4w9WgXcQ.
Last updated