Review the HTML below. You want to select the first item in the list and fade it out, then select the subsequent items up to (but not including) the active item, and fade them out halfway. How can you set up a single chain to do this?
<ul class="items">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li class="active">Item 4</li>
<li>Item 5</li>
<li>Item 6</li>
</ul>