<script src=" https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<div>
<ul>
<li>This is a test.</li>
</ul>
</div>
CSS
div {
width:200px;
background: #FF0000;
color: #FFFFFF;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
div li:not(:first-child){
display: none;
}