crsandu

Untitled

May 6th, 2014
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js">
  5. </script>
  6. <script>
  7. $(document).ready(function(){
  8. $("#flip").click(function(){
  9. $("#panel").slideToggle("slow");
  10. });
  11. });
  12. </script>
  13.  
  14. <style>
  15. #panel,#flip
  16. {
  17. padding:5px;
  18. text-align:center;
  19. background-color:#e5eecc;
  20. border:solid 1px #c3c3c3;
  21. }
  22. #panel
  23. {
  24. padding:50px;
  25. display:none;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30.  
  31. <div id="flip">Click to slide the panel down or up</div>
  32. <div id="panel">Hello world!</div>
  33.  
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment