<style>
.{{ class }}{
-webkit-animation-name:{{ animation }};
-moz-animation-name:{{ animation }};
-o-animation-name:{{ animation }};
animation-name:{{ animation }};
animation-duration: {{data.animationduration }}ms;
animation-iteration-count:{{data.animationiterationcount }};
animation-delay: {{data.animationdelay }}ms;
animation-fill-mode: {{data.animationfillmode }};
animation-play-state:{{data.animationplaystate }};
animation-direction:{{data.animationdirection }} ;
animation-timing-function:{{data.animationtimingfunction }};
opacity:0;
position:absolute;
z-index:0;
}
@-moz-keyframes {{ animation }} {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
}
@-webkit-keyframes {{ animation }} {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
}
@-o-keyframes {{ animation }} {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
}
@
-moz--webkit--o-keyframes {{ animation }} {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
}
</style>
<div style="background-image:url({{ bgimage }});Background-color:#fff;height:{{ bannerheight }}px;width:{{ bannerwidth }}px;overflow:hidden;position:relative;">
<div style="background-repeat: no-repeat;background-size:100%;background-image:url({{ actor }});height:{{ imageheight }}px;width:{{ imagewidth }}px;position:absolute;" class="{{ class }}"></div>
</div>