ppamorim

Untitled

May 12th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type='text/javascript' src='LOCAL ONDE ESTA O SCRIPT'></script>
  2. <script>
  3.  
  4. $(document).ready(function(){
  5.     $(".botao").click(function(){  //toda vez que vc clicar na div .botao, ela vai executar o codigo abaixo
  6.         $(".fundo").animate({  //vai animar a div .fundo
  7.         height:'hide'  //vai esconder a div, pode também utilizar height:'0px' e height:'0%'
  8.         });
  9.     });
  10. });
  11.  
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment