// İframe oluşturma fonksiyonu
function createIframe() {
// 1. İframe elementini oluştur
const iframe = document.createElement("iframe");
// 2. Özellikleri belirle (src, width, height, vb.)
iframe.src = "https://www.youtube.com/embed/SlK4N32Qkl4?start=9&autoplay=1";
iframe.width = "100%";
iframe.height = "500px";
iframe.frameBorder = "0";
iframe.allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture";
iframe.allowFullscreen = true;
// 3. İframe'i hedef div'in içine ekle
document.getElementById("iframe-container").appendChild(iframe);
}
// Sayfa yüklendiğinde veya bir tetikleyici ile çalıştır
window.onload = createIframe;