photoswipe 实现图片的单击放大

1、项目结构

2、HTML 代码

 
 
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PhotoSwipe.aspx.cs" Inherits="MvcAppTest.PhotoSwipe" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <link href="PhotoSwipe/styles.css" rel="stylesheet" />
    <script src="PhotoSwipe/klass.min.js"></script>
    <link href="PhotoSwipe/photoswipe.css" rel="stylesheet" />
    <link href="PhotoSwipe/default-skin.css" rel="stylesheet" />
    <script src="PhotoSwipe/jquery-1.7.2.min.js"></script>
    <script src="PhotoSwipe/photoswipe.js"></script>
    <script src="PhotoSwipe/photoswipe-ui-default.js"></script>
    <script src="PhotoSwipe/jquery.transit.js"></script>
    <script src="PhotoSwipe/hammer.js"></script>
    <script src="PhotoSwipe/jquery.hammer.js"></script>
</head>
<body>
 <div id="demo-test-gallery" class="demo-gallery">
     <ul id="Gallery" class="gallery">
      <li><a  href="img/pic1.jpg" data-size="1600x1600" data-med="img/pic1.jpg" data-med-size="1024x1024"><img src="img/pic11.jpg" alt="Image 001" /></a></li>
              <li><a  href="img/pic2.jpg" data-size="1600x1600" data-med="img/pic2.jpg" data-med-size="1024x1024"><img src="img/pic22.jpg" alt="Image 002" /></a></li>
    </ul>
   </div>
    <script src="PhotoSwipe/PhotoSwipeTool.js"></script>
</body>
</html>
      <script type="text/javascript">
          (function (window, PhotoSwipe) {
              document.addEventListener('DOMContentLoaded', function () {
                  var
                    options = {},
                    instance = PhotoSwipe.attach(window.document.querySelectorAll('#Gallery a'), options);

              }, false);
          }(window, window.Code.PhotoSwipe));

    </script>
View Code
 
  
 
 

3、引用文件下载地址

链接:https://pan.baidu.com/s/1qvyyeVdjlEfnDlMSkHtRrg     提取码:es1a

猜你喜欢

转载自www.cnblogs.com/net064/p/10249146.html