説明なし

gallery.html 523B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>图片查看器</title>
  6. <link rel="stylesheet" href="photoGallery.css"/>
  7. <script src="jquery.js"></script>
  8. <script src="jquery.photo.gallery.js"></script>
  9. </head>
  10. <body>
  11. <div class="box">
  12. <header drag>
  13. <div class="winControl" noDrag>
  14. <span class="closeWin" title="关闭"><i class="icon_close-big"></i></span>
  15. </div>
  16. </header>
  17. <div class="gallery"></div>
  18. </div>
  19. <script>
  20. $.initGallery();
  21. </script>
  22. </body>
  23. </html>