Open
Description
here is what I try to do by using jquery:
var func = (v) => {
$(v).css('opacity', 0)
setTimeout(()=> {
$(v).text(parseInt(Math.random() * 100))
$(v).css('opacity', 1)
setTimeout(func.bind(this, v), 3000 + Math.random() * 3000)
},5000)
}
$('svg text').each((k, v) => {
$(v).css('transition', 'opacity 5s cubic-bezier(0.4, 0, 0.2, 1) 0s')
setTimeout(func.bind(this, v), Math.random() * 10000)
})