( zslaszlo | 2023. 01. 26., cs – 13:26 )

Szerkesztve: 2023. 01. 26., cs – 13:27

Megoldottam neked a házi feladatot egy félperc guglival. Fogyaszd egészséggel!

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Test Meet</title>
    <!-- change domain to match your Jitsi server -->
    <script src='https://meet.jit.si/external_api.js'></script>
    <style>
        html {
            overflow: auto;
        }

        html,
        body,
        div,
        iframe {
            margin: 0;
            padding: 0;
            height: 100%;
            border: none;
        }

    </style>
</head>
<body>
<div id='meet'></div>

<script>
    const domain = 'meet.jit.si';  // change domain to match your Jitsi server
    const options = {
        roomName: 'AUniqueMeetingRoomName',
        parentNode: document.querySelector('#meet'),
    };
    const api = new JitsiMeetExternalAPI(domain, options);
</script>
</body>
</html>