1. 程式人生 > >js的滑動效果

js的滑動效果

當頁面不夠用是或者我們想要在一定空間內進行大量佈局,除了層結構外,我還想到了js中的滑動效果,首先

jquery滑動效果有向上滑動和向下滑動1jQuery slideUp()2jQuery slideDown()

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $(".flip").click(function(){
    $(".panel").slideUp("slow");
  });
});
</script>
 
<style type="text/css"> 
div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel
{
height:120px;
}
</style>
</head>
 
<body>
 
<div class="panel">
<p>W3School - 領先的 Web 技術教程站點</p>
<p>在 W3School,你可以找到你所需要的所有網站建設教程。</p>
</div>
 
<p class="flip">請點選這裡</p>
 
</body>
</html>

 顯示下滑的結果:

滑動的轉換為slideToggle() 方法,用法也和slideUp相同