File size: 1,927 Bytes
770f82f
 
 
 
 
cc17019
770f82f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Warna-Warni Nusantara: Menyelami Kekayaan Budaya Indonesia</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
            font-family: sans-serif;
        }

        .background-container {
            position: relative; 
            width: 100vw;
            height: 100vh;
        }

        #canva-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            z-index: 1;
        }

        .content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .content-overlay > * {
            pointer-events: auto;
        }
        
        .content-box {
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px 40px;
            border-radius: 10px;
        }

    </style>
</head>
<body>

    <div class="background-container">
        <iframe id="canva-iframe" allowfullscreen="allowfullscreen" allow="fullscreen" loading="lazy"
            src="https://www.canva.com/design/DAG1ihTnzFo/dJy6OXX8P4Tvj-4372Y99w/view?embed">
        </iframe>

        <!-- <div class="content-overlay">
            <div class="content-box">
                <h1>Konten Anda Melayang di Sini</h1>
                <p>Sekarang iframe di belakang bisa di-klik (Next, Previous, Fullscreen).</p>
            </div>
        </div> -->
    </div>

</body>
</html>