欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JQuery的Galleria插件的使用

程序员文章站 2022-04-27 22:21:43
...

    前一阵在研究JQuery的插件,其中有一款插件(Galleria )可以用来显示图片的,下面是一系列小图片,上面是当前查看的大图,发现用起来很简单,一点也不难。把代码贴在这里跟大家一起分享,效果图我已经传入附件中。

 

Galleria.html

 

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="$!Server/static/js/jquery/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="$!Server/static/js/jquery/galleria.js"></script>
<title>Galleria Test</title>
<style type="text/css">
  .images{width:500px; height:400px;margin:20px auto}
</style>
<script type="text/javascript">
  $(document).ready(function(){
    Galleria.loadTheme('$!Server/static/js/jquery/themes/galleria.classic.js');
        $('.images').galleria({
           image_crop:true,
           transition: 'fade',
        });
  });

</script>
</head>
<body>
    <div class="images">
           <img src="$!Server/static/images/TestImage/1.gif">
           <img src="$!Server/static/images/TestImage/2.gif">
           <img src="$!Server/static/images/TestImage/3.gif">
    </div>
</body>
</html>

  • JQuery的Galleria插件的使用
            
    
    博客分类: javascript JQuery Galleria JS 前端框架 web前端
  • 大小: 119 KB