I'm looking for a solution to add a non-JS CSS3 animation for a specific project.
This animation should auto-start, scroll (horizontally) every 10s to the next page.
<table style="width:100%">
<tr>
<th>First</th>
<th>Second</th>
<th>Third</th>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<tr>
<td>D</td>
<td>E</td>
<td>F</td>
</tr>
</table>
Let's assume we got three pages with this content. What would be an appropriate solution to my problem?