<div id="svgContainer" style=""></div>
html {
margin: 0;
padding: 0;
background-color: black;
}
body,
html {
width: 100%;
height: 100%;
overflow: hidden;
}
#svgContainer {
width: 80%;
height: 80%;
background-color: #000;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
/* Shapes */
var svgContainer = document.getElementById('svgContainer');
var animItem = bodymovin.loadAnimation({
wrapper: svgContainer,
animType: 'svg',
loop: true,
animationData: JSON.parse(animationData)
});
This Pen doesn't use any external CSS resources.