Working Example here - add /edit to the URL to play with the code
You just need to use JavaScript setInterval
function
$('html').addClass('js');_x000D_
_x000D_
$(function() {_x000D_
_x000D_
var timer = setInterval(showDiv, 5000);_x000D_
_x000D_
var counter = 0;_x000D_
_x000D_
function showDiv() {_x000D_
if (counter == 0) {_x000D_
counter++;_x000D_
return;_x000D_
}_x000D_
_x000D_
$('div', '#container')_x000D_
.stop()_x000D_
.hide()_x000D_
.filter(function() {_x000D_
return this.id.match('div' + counter);_x000D_
})_x000D_
.show('fast');_x000D_
counter == 3 ? counter = 0 : counter++;_x000D_
_x000D_
}_x000D_
_x000D_
});
_x000D_
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>_x000D_
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"_x000D_
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">_x000D_
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">_x000D_
_x000D_
<head>_x000D_
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>_x000D_
<title>Sandbox</title>_x000D_
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />_x000D_
<style type="text/css" media="screen">_x000D_
body {_x000D_
background-color: #fff;_x000D_
font: 16px Helvetica, Arial;_x000D_
color: #000;_x000D_
}_x000D_
_x000D_
.display {_x000D_
width: 300px;_x000D_
height: 200px;_x000D_
border: 2px solid #000;_x000D_
}_x000D_
_x000D_
.js .display {_x000D_
display: none;_x000D_
}_x000D_
</style>_x000D_
</head>_x000D_
_x000D_
<body>_x000D_
<h2>Example of using setInterval to trigger display of Div</h2>_x000D_
<p>The first div will display after 10 seconds...</p>_x000D_
<div id='container'>_x000D_
<div id='div1' class='display' style="background-color: red;">_x000D_
div1_x000D_
</div>_x000D_
<div id='div2' class='display' style="background-color: green;">_x000D_
div2_x000D_
</div>_x000D_
<div id='div3' class='display' style="background-color: blue;">_x000D_
div3_x000D_
</div>_x000D_
<div>_x000D_
</body>_x000D_
_x000D_
</html>
_x000D_
EDIT:
In response to your comment about the container div, just modify this
$('div','#container')
to this
$('#div1, #div2, #div3')