web技術を書いていきます
.element { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
$(function(){ $('ul li').hide(); $('ul li').each(function(i) { $(this).delay(200 * i).fadeIn(500); }); });