blob: 2b6a33cba879924872d612aaffa532c8ea799546 [file] [log] [blame]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
body, html{
background-color:#ddd;
margin: 0px;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
#bodymovin{
background-color:#333;
width:100%;
height:100%;
/*width:800px;
height:500px;*/
display:block;
overflow: hidden;
transform: translate3d(0,0,0);
margin: auto;
}
.botas_loop_3,.botas_loop_2{
display:none
}
</style>
<!-- build:js bodymovin.js -->
<script src="../build/player/bodymovin_light.js"></script>
</head>
<body>
<div id="bodymovin"></div>
<script>
var anim;
var elem = document.getElementById('bodymovin')
var animData = {
container: elem,
renderer: 'svg',
loop: true,
autoplay: true,
rendererSettings: {
progressiveLoad:false
},
path: 'exports/bm/data.json'
};
anim = bodymovin.loadAnimation(animData);
</script>
</body>
</html>