Advertisement
plinior2

divescondida

Jul 24th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7.   $('#frame').css('display', 'none')
  8.   $("button").click(function(){
  9.     $("#frame").slideToggle();
  10.    
  11.   });
  12. });
  13. </script>
  14.  
  15. <style type="text/css">
  16. #button{
  17.     background-color: white;
  18.     border: 0px;
  19. }
  20. #button{
  21.     background-color: white;
  22.     border: 0px;
  23. }
  24. .a {
  25.     font-size: 15;
  26. }
  27. #frame {
  28.     color: transparent;
  29. }
  30. </style>
  31.  
  32. </head>
  33. <body>
  34.  
  35.  
  36. <button>Toggle slideDown() and slideUo()</button>
  37.  
  38. <div class=".a"<a href="#">Assista</a></div>
  39. <p>This is a paragraph.</p>
  40.  
  41. <div id="frame">
  42. <iframe width="560" height="315" src="http://www.youtube.com/embed/9CmnJvGJFGY" frameborder="0" allowfullscreen></iframe>
  43. </div>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement