On my webpage, there is a sidebar that behaves in a specific way when the browser is resized. Items are only displayed if they are able to fit within the visible portion of the window. This functionality can be seen in action on the jsFiddle provided.
To test this feature, try resizing the browser window. You'll notice that some items disappear when the window height decreases, and reappear when the window height increases.
The issue at hand: While I have successfully implemented a smooth animation for items transitioning from not being displayed to being displayed, I have encountered difficulty with the reverse transition, from displayed to not displayed.
Am I explaining this clearly enough?