我们常常可以在网上看QQ空间里面相册,其实实现起来很简单。只需要使用jquery的galleria插件就可以轻松实现。实现代码如下:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>相册</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="galleria/galleria-1.2.5.min.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
         Galleria.loadTheme('galleria/themes/classic/galleria.classic.js');
         $('#images').galleria({
           image_crop:true,
           transition: 'fade',
         });
    });
</script>
<style type="text/css">
#images {
 width:500px;
 height:400px;
 margin:20px auto
}
</style>
</head><body>
<div id="images">
     <img src="images/06.jpg" />
     <img src="images/07.jpg" />
     <img src="images/08.jpg" />
     <img src="images/09.jpg" />
     <img src="images/10.jpg" />
     <img src="images/11.jpg" />
     <img src="images/01.gif" />
     <img src="images/02.jpg" />
     <img src="images/04.jpg" />
     <img src="images/03.jpg" />
     <img src="images/05.jpg" />
</div>
</body>
</html>插件下载地址:http://www.phpnewer.com/index.php/Ymgx/detail/id/98