Update
This commit is contained in:
parent
e9740e8914
commit
f28acba78a
|
@ -61,11 +61,9 @@ html, body {
|
|||
flex-flow: column;
|
||||
}
|
||||
|
||||
#log iframe {
|
||||
width: inherit;
|
||||
min-height: 100vh;
|
||||
height: max-content;
|
||||
border:none;
|
||||
.youtube-video {
|
||||
aspect-ratio: 16 / 9;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#body {
|
||||
|
|
|
@ -37,7 +37,7 @@ async function fetchData(log, tpl) {
|
|||
for (let i = 0; i < spl_arr.length; i++) {
|
||||
if (spl_arr[i].indexOf(youtube_link_start) === 0) {
|
||||
let id = spl_arr[i].replace(youtube_link_start, '');
|
||||
let text_frame = `<iframe width="560" height="315" src="https://www.youtube.com/embed/${id}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>`;
|
||||
let text_frame = `<iframe class="youtube-video" src="https://www.youtube.com/embed/${id}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>`;
|
||||
youtube_frame_arr.push(text_frame);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue