I currently have this setup: code
Below is the HTML code:
<div id="box">
<div id="line1" class="line"></div>
<div id="line2" class="line"></div>
<div id="line3" class="line"></div>
</div>
My goal is to use jQuery to rotate line1 and line3 to create an X shape, while also hiding line2 when the container div (#box) is clicked. I am leaning towards using jQuery for its animation capabilities, but open to other suggestions as well.