IjzerenHein / react-tag-cloud

Create beautiful tag/word clouds using React ☁️
https://react-tag-cloud.stackblitz.io/
MIT License
117 stars 27 forks source link

Didn't get any animation after `this.forceUpdate()` #9

Closed tonypig93 closed 6 years ago

tonypig93 commented 6 years ago

I'm following the example to create a tag cloud, but I cannot see any animation after this.forceUpdate(), the word tags just switch positions in a flash. I'm using react 16.4.1.

tonypig93 commented 6 years ago

alright, i got it, I have to set styles like this:

.tag-cloud > div {
    transition: 1.4s;
}

well, I think it should be provided by react-tag-cloud itself.