I'm creating an image slider, and i'd like to have the explode effect as the transition. But the problem is, explode goes outside of the surrounding div when it fires.
<div class="outer"> <!-- outer container that the explosion shouldn't spill over -->
<div class="explode"><img src="http://lorempixel.com/400/200/"/></div><!-- Stuff to explode -->
</div>
What i'd like is a sort of surrounding div with overflow:hidden so that it doesn't cover the other page elements. I tried this but it didn't really work:
Am i going to have to create my own or can this be done but i'm just being dense?