ul li {
text-align: center;
padding: 50px 0;
color: #fff;
font-size: 96px;
display: none;
}
ul li:nth-child(1) {
background-color: #19184c;
}
ul li:nth-child(2) {
background-color: #113623;
}
ul li:nth-child(3) {
background-color: #f2b633;
}
ul li:nth-child(4) {
background-color: #a8411e;
}
ul li.ON {
display: block;
}
function init(){
var s = $('ul li.Item');
var n = s.length;
function replaceAddClass(i) {
s.eq(i).siblings().removeClass('is-active');
s.eq(i).addClass('is-active');
}
var i = 0; replaceAddClass(i);
setInterval(function(){
i++;
if ( !(i < n) ) { i = 0; }
replaceAddClass(i);
}, 5000);
}
init()