JSFiddle - React, Tailwind, and code Playground

HTML

<table id='myTable'>
    <tbody>
        <tr><td><img src='http://placekitten.com/g/50/50'></td>
            <td><img src='http://placekitten.com/g/50/50'></td></tr>
        <tr><td><img src='http://placekitten.com/g/50/50'></td>
            <td><img src='http://placekitten.com/g/50/50'></td></tr>
        <tr><td><img src='http://placekitten.com/g/50/50'></td>
            <td><img src='http://placekitten.com/g/50/50'></td></tr>
    </tbody>
</table>

JavaScript

$(function() {
    while(true){
     $('#myTable img').each(function(index) {
        $(this).fadeOut('slow', function() {
    // Animation complete.
       });
          $(this).fadeIn('slow', function() {
    // Animation complete.
       });
     }
    });
});