JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
        <ul id="page" class="scrollable vertical"></ul>
    </div>

CSS

* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;
}

#container {
    position: absolute;
    top: 44px;
    bottom: 24px;
	overflow: hidden;
	font-size: 20px;
	width: 900px;
}

#page {
	display: table;
	font-size: 99%;
}

#container li {
	display: table;
	border: 1px solid black;
	opacity: 1;
	border-radius: 5px;
	background: -webkit-linear-gradient(top, rgba(200,200,200,.25), rgba(100,100,100,.29));
	overflow: hidden;
	font-size: 59%;
}

#container li:nth-child(1) {
   -webkit-animation: comeIn 5s .1s 1 both;
}

#container li:nth-child(2) {
   -webkit-animation: comeIn 5s .2s 1 both;
}

#container li:nth-child(3) {
   -webkit-animation: comeIn 5s .3s 1 both;
}

#container li:nth-child(4) {
   -webkit-animation: comeIn 5s .4s 1 both;
}

#container li:nth-child(5) {
   -webkit-animation: comeIn 5s .5s 1 both;
}

#container li:nth-child(6) {
   -webkit-animation: comeIn 5s .6s 1 both;
}

#container li:nth-child(7) {
   -webkit-animation: comeIn 5s .7s 1 both;
}

#container li:nth-child(8) {
   -webkit-animation: comeIn 5s .8s 1 both;
}

#container li:nth-child(9) {
   -webkit-animation: comeIn 5s .9s 1 both;
}

#container li:nth-child(10) {
   -webkit-animation: comeIn 5s 1s 1 both;
}

@-webkit-keyframes comeIn {
  0%   {
	opacity: 0;
	-webkit-transform: translate3d(-50px,-50px,0);
  }
  50%   {
	opacity: .5;
	-webkit-transform: translate3d(50px,50px,0);
  }
  100% {
	-webkit-transform: translate3d(0,0,0);
	opacity: 1;
  }
}

#container li .cell {
	display: table-cell;
	padding: 0 10px;
}

#container li .cell:before {
	content: ">";
	position: absolute;
	border: 2px solid white;
}

#container li .cell .test {
	display: block;
	border: 2px solid white;
	width: 100px;
	height: 20px;
	padding: 2px;
	background: -webkit-radial-gradient(center center, circle contain, black 0%, blue 25%, green 40%, red 60%, purple 80%, white 100%);
   -webkit-animation:...

JavaScript

var names = [
"Arnulfo Heriberto Hao",
"Elbert Murray Heartsill",
"Danny Fred Querido",
"Boris Hobert Cregger",
"Clifton Brady Laurance",
"Homer Jay Telch",
"Lawrence Lloyd Barrus",
"Shannon Isaias Plate",
"Odis Raul Insley",
"Marion Ben Nhatsavang",
"Dong Brent Mcwilson",
"Chong Jarrod Hinderman",
"Eric Reyes Caffie",
"Junior Newton Dagan",
"Cleo Maynard Gutirrez",
"Cruz Rey Misiewicz",
"Jeremy Nelson Bew",
"Doug Buster Maclead",
"Zachariah Martin Colo",
"Nathaniel Houston Berneri",
"Clement Laverne Vrana",
"Kermit Jeffery Left",
"Davis Margarito Koran",
"Booker Wallace Primavera",
"Prince Enrique Pulice",
"Johnathon Minh Inciong",
"Stan Tony Calaycay",
"Owen Sang Tugade",
"Charlie Melvin Veloso",
"August Galen Kathel",
"Dominique Marc Sitterson",
"Mitchell Isaiah Chareunrath",
"Luther Avery Fekety",
"Myles Doug Strohl",
"Reuben Bob Holoman",
"Eloy Erwin Kendrick",
"Alec Bernard Hitz",
"Jessie Oswaldo Shamir",
"Jamison Seymour Nighman",
"Garret Chester Robasciotti",
"Clifford Samuel Sokoloff",
"Carlton Jamel Mcentee",
"Blair Titus Lennertz",
"Barton Edmund Payn",
"Ed Williams Faltin",
"Leonardo Kent Trimarchi",
"Lon Esteban Samrah",
"Mike Alfonzo Alaniz",
"George Gil Domnick",
"Lemuel Lesley Cerventez",
];

addEventListener('DOMContentLoaded', function() {
    var container = document.getElementById('container');
    var page = document.getElementById('page');
	
	function formatValue(index, value) {
		return "<li><div class='cell'><i>" + value + "</i></div> <div class='cell'><div class='group'><i>22</i><i>33</i><i>66</i></div></div>"
		+ " <div class='cell'><b class='testb'>"+index+"</b></div>"
		+ " <div class='cell'><div class='testb'>1</div></div>"
		+ " <div class='cell'><div class='teste'><p>text text text text<br /> text text text text</p></div></div>"
		+ " <div class='cell'><div class='teste'><p>text text text text<br /> text text text text</p></div></div>"
		+ " <div class='cell'><div class='testr'>1</div></div>"
		+ " <div class='cell'><div...