-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
31 lines (28 loc) · 1.22 KB
/
Copy pathscript.js
File metadata and controls
31 lines (28 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
document.addEventListener("DOMContentLoaded", function() {
var container = document.getElementById("slideshow-container");
var iframe = document.createElement('iframe');
iframe.src = "slideshow-main/simple-animated-slider-with-swiper-js-and-gsap-tweenmax/dist/index.html";
iframe.style.width = "100%";
iframe.style.height = "500px";
iframe.style.border = "0";
container.appendChild(iframe);
});
document.addEventListener("DOMContentLoaded", function() {
var container = document.getElementById("slideshow-middle");
var iframe = document.createElement('iframe');
iframe.src = "slideshow-aboutus/index.html";
iframe.style.width = "100%";
iframe.style.height = "auto"; // Auto-adjust height based on content
iframe.style.border = "0";
iframe.style.minHeight = "500px"; // Set a minimum height if needed
container.appendChild(iframe);
});
document.addEventListener("DOMContentLoaded", function() {
var container = document.getElementById("ad-machine");
var iframe = document.createElement('iframe');
iframe.src = "coffeemachine/index.html";
iframe.style.width = "100%";
iframe.style.height = "100vh";
iframe.style.border = "0";
container.appendChild(iframe);
});