<div class="box" id="elem"></div>
.box{
background-color: #ea0f9b;
width: 80px;
height: 80px;
cursor: pointer;
}
var cssSelector = anime({
targets: '#elem',
translateX: 200,
rotate: '1turn',
scale: 1/2,
easing: 'easeInOutQuart',
duration: 2000,
direction: 'normal',
loop: true
});
This Pen doesn't use any external CSS resources.