Yes! It's fairly easy to embed our technology with little technical know-how.
The quickest way to embed a Space (for example, https://spaces.vatom.com/@sample) in your website is via the use of an iFrame.
We recommend the iFrame being a full-screen experience. Small embedded frames will deliver a less-than-ideal experience.
Add the following iFrame to your Website
Replace @sample with your space handle.
<iframe src="https://spaces.vatom.com/@sample" allow="camera *; microphone *"
height="100%"
width="100%" ></iframe>
To have the iFrame fill the entire Website Frame
Use the following HTML iFrame and CSS elements. Replace @sample with your space handle
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<style type="text/css" media="screen">
body,
html {
width: 100%;
height: 100%;
overflow: hidden;
}
* {
padding: 0;
margin: 0;
}
iframe {
width: 100%;
height: 100%;
overflow: hidden;
border: none;
}
</style>
</head>
<body>
<iframe src="https://spaces.vatom.com/@sample" allow="camera *; microphone *"
frameborder="0"
scrolling="no"
height="100%"
width="100%" >
</iframe>
</body>
</html>
Comments
0 comments
Please sign in to leave a comment.