GithubHelp home page GithubHelp logo

fengyuanchen / jquery-viewer Goto Github PK

View Code? Open in Web Editor NEW
326.0 326.0 168.0 3.19 MB

A jQuery plugin wrapper for Viewer.js.

Home Page: https://fengyuanchen.github.io/jquery-viewer

License: MIT License

JavaScript 100.00%
image-viewer jquery jquery-plugin viewer viewerjs

jquery-viewer's Issues

Options中title不能用函数自定义?

当显示中文名称时,大图预览时底部的名称会是乱码,所以我通过如下自定义解决:

$image.viewer({
        title: function(image){
            return decodeURI(image.alt);
        }
    });

但是发现没有效果!

在ViewerJS里的代码:

var onViewed = function onViewed() {
        var imageData = _this.imageData;
        var render = Array.isArray(options.title) ? options.title[1] : options.title;
        title.innerHTML = isFunction(render) ? render.call(_this, image, imageData) : "".concat(alt, " (").concat(imageData.naturalWidth, " \xD7 ").concat(imageData.naturalHeight, ")");
      };

但是在你的编译完的项目文件里:

 // Generate title after viewed
      var onViewed = function onViewed() {
        var imageData = _this.imageData;


        title.textContent = alt + ' (' + imageData.naturalWidth + ' \xD7 ' + imageData.naturalHeight + ')';
      };

我想应该是后面jquery-viewer没有同步viewer升级的原因吧?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.