1
my question is about how to make various elements appear with different classes and times. The idea is to do as the Facebook Live interaction. The Code is as follows::
<ul class="reactions">
<li class="size1">:)</li>
<li class="size2">:o</li>
<li class="size3">:(</li>
<li class="size1">:/</li>
<li class="size2">:-</li>
<li class="size3">:*</li>
</ul>
By logic, Javascript (or Jquery) would have to print these 6 elements randomly drawing size and "li", I have no idea how to do this. I already have them in html, it will not be necessary to pull the bank. Can help me?
I don’t know exactly what interaction you’re referring to, so you can set an example with an image?
– Sergio
Something like this: https://goo.gl/gPAxrX (I refer to higher reactionns) the animation I already have, the <li> are already programmed for when removed from them the diplay:None (because the classes size1, size2 and Size3 have display:block) they already animate and go left. I just need javascript to do this "size" class injection at different times.
– Fábio Duarte
It’s something like watching emoticons hover on the screen, in the upper section like in the example of this video?
– Chun
Exactly that. My CSS already does this when I change the diplay:None to block, it already takes the li and applies animation, my problem is in the javascript interlink this and apply at different times
– Fábio Duarte