首页 电脑 电脑学堂 查看内容

jQuery实现点击小图显示大图代码分享

2015-8-25 13:10 1976 0

摘要: 这是一款基于jQuery实现的点击小图查看大图的代码,适合用于产品展示等环节,便于用户浏览产品细节,是一款非常实用的特效代码。 运行效果图: ----------------------查看效果----------------------- 小提示:浏 ...
关键词: nbsp example fancybox 大图 title script jQuery transitionOut transitionIn none



这是一款基于jQuery实现的点击小图查看大图的代码,适合用于产品展示等环节,便于用户浏览产品细节,是一款非常实用的特效代码。
运行效果图:    ----------------------查看效果-----------------------

小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式。
为大家分享的jQuery实现点击小图显示大图效果代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<head>
  
 <title>jQuery实现点击小图显示大图效果</title>
 <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
 <script type="text/javascript" src="js/jquery.mousewheel-3.0.2.pack.js"></script>
 <script type="text/javascript" src="js/jquery.fancybox-1.3.1.js"></script>
 <script type="text/javascript" src="js/pngobject.js"></script>
 <link rel="stylesheet" href="style/style.css" type="text/css" />
 <link rel="stylesheet" href="style/jquery.fancybox-1.3.1.css" type="text/css" />
 <script type="text/javascript">
 $(document).ready(function() {
  /*
  *  Examples - images
  */
 
  $("a#example1").fancybox({
  'titleShow' : false
  });
 
  $("a#example2").fancybox({
  'titleShow' : false,
  'transitionIn' : 'elastic',
  'transitionOut' : 'elastic'
  });
 
  $("a#example3").fancybox({
  'titleShow' : false,
  'transitionIn' : 'none',
  'transitionOut' : 'none'
  });
 
  $("a#example4").fancybox();
 
  $("a#example5").fancybox({
  'titlePosition' : 'inside'
  });
 
  $("a#example6").fancybox({
  'titlePosition' : 'over'
  });
 
  $("a[rel=example_group]").fancybox({
  'transitionIn' : 'none',
  'transitionOut' : 'none',
  'titlePosition' : 'over',
  'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
   return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? '   ' + title : '') + '</span>';
  }
  });
 
  /*
  *  Examples - various
  */
 
  $("#various1").fancybox({
  'titlePosition' : 'inside',
  'transitionIn' : 'none',
  'transitionOut' : 'none'
  });
 
  $("#various2").fancybox();
 
  $("#various3").fancybox({
  'width'  : '75%',
  'height'  : '75%',
  'autoScale'  : false,
  'transitionIn' : 'none',
  'transitionOut' : 'none',
  'type'  : 'iframe'
  });
 
  $("#various4").fancybox({
  'padding'  : 0,
  'autoScale'  : false,
  'transitionIn' : 'none',
  'transitionOut' : 'none'
  });
 });
 </script>
</head>
<body>
 
<div id="content">
 <h4>jQuery 实现点击小图显示大图</h4>
 <p>
 <a rel="example_group" href="example/11.webp" title="Lorem ipsum dolor sit amet"><img alt="" src="example/1.webp" /></a>
 
 <a rel="example_group" href="example/22.webp" title=""><img alt="" src="example/2.webp" /></a>
 
 <a rel="example_group" href="example/44.webp" title=""><img alt="" src="example/4.webp" /></a>
 </p>
 <p>
 <a rel="example_group" href="example/33.webp" title=""><img alt="" src="example/3.webp" /></a>
 
 <a rel="example_group" href="example/8_b.webp" title=""><img alt="" src="example/8_s.webp" /></a>
 
 <a rel="example_group" href="example/9_b.webp" title=""><img alt="" src="example/9_s.webp" /></a>
 </p>
</div>
<div><p> </p></div>
</body>
</html>
以上就是为大家分享的jQuery实现点击小图显示大图效果代码,希望大家可以喜欢。
声明:文章版权归原作者所有 部分文章转自互联网 如有侵权请联系 [邮箱地址] 删除

路过

雷人

握手

鲜花

鸡蛋

最新评论

返回顶部