Browse Source

fancybox upgrade to v5.0

master
filesite 4 months ago
parent
commit
d2a614c8c9
  1. 4
      themes/beauty/views/layout/main.php
  2. 1
      www/css/fancybox.css
  3. 9
      www/js/beauty.js
  4. 1
      www/js/fancybox.umd.js

4
themes/beauty/views/layout/main.php

@ -13,7 +13,7 @@ require_once __DIR__ . '/../../../../plugins/Html.php'; @@ -13,7 +13,7 @@ require_once __DIR__ . '/../../../../plugins/Html.php';
<link href="/css/main.css?v.1.1" rel="stylesheet">
<!--for theme beauty-->
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/fubox.min.css" rel="stylesheet">
<link href="/css/fancybox.css" rel="stylesheet">
<link href="/css/video-js.min.css" rel="stylesheet">
<link href="/css/beauty.css?v<?= Html::getStaticFileVersion('beauty.css', 'css') ?>" rel="stylesheet">
<link href="/css/github-markdown-light.css" rel="stylesheet" id="markdowncss">
@ -97,7 +97,7 @@ require_once __DIR__ . '/../../../../plugins/Html.php'; @@ -97,7 +97,7 @@ require_once __DIR__ . '/../../../../plugins/Html.php';
<script src="/js/jquery-3.1.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/lazyload.min.js"></script>
<script src="/js/fubox.min.js"></script>
<script src="/js/fancybox.umd.js"></script>
<script src="/js/qrcode.min.js"></script>
<script src="/js/video.min.js"></script>
<script src="/js/js.cookie.min.js"></script>

1
www/css/fancybox.css

File diff suppressed because one or more lines are too long

9
www/js/beauty.js

@ -10,15 +10,20 @@ window.HELP_IMPROVE_VIDEOJS = false; @@ -10,15 +10,20 @@ window.HELP_IMPROVE_VIDEOJS = false;
if ($('#image_site').get(0)) {
// 图片浏览
$('[data-fancybox]').fancybox({
Fancybox.bind('[data-fancybox]', {
toolbar: true,
loop: true,
smallBtn: false,
buttons: ["zoom", "slideShow", "fullScreen", "download", "thumbs", "close"],
iframe: {
preload: false
},
on: {
startSlideshow: function(fancybox) {
//console.log('startSlideshow', arguments);
}
}
})
});
//需要浏览器支持naturalWidth
var saveSmallImg = function(imgEl, cateId) {

1
www/js/fancybox.umd.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save