<body>
<div class="circle"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
</body>
xxxxxxxxxx
.circle{
background-color:purple;
border-radius:50%;
height:30px;
width:30px;
}
xxxxxxxxxx
gsap.fromTo('.circle', {backgroundColor:"purple", x:20}, {backgroundColor:"blue", x:120, repeat:1, yoyo:true})
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.