⌂Individuals & households
Sustrax Vita
Give your community a practical way to explore emissions from home energy and travel.
Try the personal calculator →View Vita embed code HTML + CSS + JavaScript
<style>
#sustrax_vita_iframe {
box-sizing: border-box;
border: 10px solid #f0f0f0;
border-radius: 25px;
width: 100%;
min-height: 100vh;
overflow: hidden;
}
</style>
<iframe id="sustrax_vita_iframe" title="Sustrax Vita personal carbon calculator" src="https://iframe.app.sustrax.com/dashboard" scrolling="no"></iframe>
<script>
window.addEventListener("message", function (event) {
const iframe = document.getElementById("sustrax_vita_iframe");
if (event.data && event.data.height && event.source === iframe.contentWindow) {
const newHeight = event.data.height + 400;
if (newHeight > 1200) iframe.style.height = newHeight + "px";
}
}, false);
</script>