Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3.    $(".flip").click(function(){
  4.     cheight = $("#image_container").height();
  5.    if (cheight < 350) {
  6.     $("div").animate({height:350},"slow"); 
  7.     }
  8.    else {
  9.     $("div").animate({height:290},"slow"); 
  10.     }
  11.    $(".panel").toggle("fast");
  12.   });
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement