码迷,mamicode.com
首页 > 其他好文 > 详细

photoswipe 实现图片的单击放大

时间:2019-01-10 13:20:25      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:文件   lan   query   mvc   java   title   char   org   show   

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 实现图片的单击放大

标签:文件   lan   query   mvc   java   title   char   org   show   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!