jQuery中可访问且SEO友好 Accordion Gallery

  • 源码大小:4.17MB
  • 所需积分:1积分
  • 源码编号:19JP-3799
  • 浏览次数:1236次
  • 最后更新:2023年07月24日
  • 所属栏目:图库
本站默认解压密码:19jp.com 或 19jp_com

简介

一个免费的(以前是高级的)、可访问的、语义的、SEO友好的、快速的、优雅可降解的手风琴画廊,由jQuery和CSS3动画构建。

它以手风琴风格的界面显示画廊,并在点击任何图像时将面板扩展到全尺寸。

不仅是图像,多媒体资料还支持任何类型的网络内容,如视频、音频、文本、DIV等。根据GPL许可

请参阅实际操作:

如何使用它:

1.在文档中加载jQuery库和Accordion Gallery插件的文件。

  1. <link rel="stylesheet" href="/path/to/accordiongallery.core.css" />
  2. <script src="/path/to/cdn/jquery.min.js"></script>
  3. <script src="/path/to/jquery.accordiongallery.min.js"></script>

2.加载您选择的主题:

  1. <!-- Air theme -->
  2. <link rel="stylesheet" href="/path/to/themes/oxygen/accordiongallery.air.css" />
  3.  
  4. <!-- Element theme -->
  5. <link rel="stylesheet" href="/path/to/themes/element/accordiongallery.element.css" />
  6.  
  7. <!-- Folder theme -->
  8. <link rel="stylesheet" href="/path/to/themes/folder/accordiongallery.folder.css" />
  9.  
  10. <!-- Minimal theme -->
  11. <link rel="stylesheet" href="/path/to/themes/minimal/accordiongallery.minimal.css" />
  12.  
  13. <!-- Oxygen theme -->
  14. <link rel="stylesheet" href="/path/to/themes/oxygen/accordiongallery.oxygen.css" />
  15.  
  16. <!-- Polaroid theme -->
  17. <link rel="stylesheet" href="/path/to/themes/polaroid/accordiongallery.polaroid.css" />
  18.  
  19. <!-- Square theme -->
  20. <link rel="stylesheet" href="/path/to/themes/square/accordiongallery.square.css" />

3.为手风琴库创建HTML,并使用部分元素如下:

  1. <article id="gallery">
  2. <section>
  3. <h1>Accordion 1</h1>
  4. <a href="1.jpg" title="Title 1">
  5. <img src="1-thumb.jpg" Alt="Alt 1" />
  6. <p>Image Description 1</p>
  7. </a>
  8. <a href="2.jpg" title="Title 2">
  9. <img src="2-thumb.jpg" Alt="Alt 2" />
  10. <p>Image Description 2</p>
  11. </a>
  12. <a href="3.jpg" title="Title 3">
  13. <img src="3-thumb.jpg" Alt="Alt 3" />
  14. <p>Image Description 3</p>
  15. </a>
  16. <!-- More Content Here -->
  17. </section>
  18.  
  19. <section>
  20. <h1>Accordion 2</h1>
  21. <a href="4.jpg" title="Title 4">
  22. <img src="4-thumb.jpg" Alt="Alt 4" />
  23. <p>Image Description 4</p>
  24. </a>
  25. <a href="5.jpg" title="Title 5">
  26. <img src="5-thumb.jpg" Alt="Alt 5" />
  27. <p>Image Description 5</p>
  28. </a>
  29. <a href="6.jpg" title="Title 6">
  30. <img src="6-thumb.jpg" Alt="Alt 6" />
  31. <p>Image Description 6</p>
  32. </a>
  33. <!-- More Content Here -->
  34. </section>
  35.  
  36. <!-- More Sections Here -->
  37. </article>

4.初始化手风琴库,并确定要使用的主题(默认:空气):

  1. $('#gallery').accordionGallery({
  2. theme: 'oxygen',
  3. });

5.更多配置选项:

  1. $('#gallery').accordionGallery({
  2.  
  3. // maximum height of the thumbnails
  4. maxHeight: 360,
  5.  
  6. // animation speed
  7. scrollSpeed: 2000,
  8.  
  9. // min/max width of the accordion panel
  10. minSliceWidth: 100,
  11. maxSliceWidth: 500,
  12.  
  13. // max height of the accordion panel
  14. maxSliceHeight: 480
  15. });

预览截图