首页javascriptslidejQuery Animation - 如何滑动元件

jQuery Animation - 如何滑动元件

我们想知道如何滑动元件。

<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("p").dblclick(function () { 
                   $(this).slideUp(); 
              });
        });
    </script>
  </head>
  <body>
    <body>
       <p>asdf</p>
       <p>asdf</p>
    </body>
</html>