<div id="block">click me</div>
#block{
position:absolute;
left: 50%;
top: 50%;
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
background: #0c8;
line-height: 100px;
text-align: center;
color: #fff;
cursor: pointer;
border-radius: 100%;
}
block.addEventListener('click', function(){
var self = this, startTime = Date.now(),
r = 100, duration = 2000;
requestAnimationFrame(function step(){
var p = Math.min(1.0, (Date.now() - startTime) / duration);
var tx = r * Math.sin(2 * Math.PI * p),
ty = -r * Math.cos(2 * Math.PI * p);
self.style.transform = 'translate('
+ tx + 'px,' + ty + 'px)';
if(p < 1.0) requestAnimationFrame(step);
});
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.