mirror of https://github.com/OpenVidu/openvidu.git
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>openvidu-web-component</title>
|
|
<script
|
|
src="https://code.jquery.com/jquery-3.3.1.min.js"
|
|
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
|
|
crossorigin="anonymous"
|
|
></script>
|
|
|
|
<script type="module" src="utils/filter-stream.js"></script>
|
|
<script type="module" src="utils/shader-renderer.js"></script>
|
|
<script type="module" src="utils/media-devices.js"></script>
|
|
<script type="module" src="app.js"></script>
|
|
<script src="openvidu-webcomponent-dev.js"></script>
|
|
<link rel="stylesheet" href="openvidu-webcomponent-dev.css" />
|
|
|
|
<style>
|
|
:root {
|
|
--ov-primary-color: #303030;
|
|
--ov-secondary-color: #3e3f3f;
|
|
--ov-tertiary-color: #598eff;
|
|
--ov-warn-color: #eb5144;
|
|
--ov-accent-color: #ffae35;
|
|
--ov-light-color: #e6e6e6;
|
|
|
|
--ov-logo-background-color: #3a3d3d;
|
|
--ov-text-color: #ffffff;
|
|
|
|
--ov-panel-text-color: #1d1d1d;
|
|
--ov-panel-background: #ffffff;
|
|
|
|
--ov-buttons-radius: 50%;
|
|
--ov-leave-button-radius: 10px;
|
|
--ov-video-radius: 5px;
|
|
--ov-panel-radius: 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="events"></div>
|
|
<!-- OpenVidu Web Component -->
|
|
<openvidu-webcomponent></openvidu-webcomponent>
|
|
</body>
|
|
</html>
|