I've written a simple JQuery plugin for it:
https://github.com/karbachinsky/jquery-DotAnimation
//Loading
$(function () {
// Animation will start at once
var $el = $('.element');
$el.dotAnimation({
speed: 300,
dotElement: '.',
numDots: 3
});
});
JSFiddle example:
https://jsfiddle.net/bcz8v136/