首页 > 其他 > 详细

photoswipe 实现图片的单击放大

时间:2019-01-10 12:25:22      阅读:169      评论:0      收藏:0      [点我收藏+]

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

 

photoswipe 实现图片的单击放大

原文:https://www.cnblogs.com/net064/p/10249146.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!