Giter Club home page Giter Club logo

Comments (5)

fancyapps avatar fancyapps commented on June 2, 2024

Hi

Perhaps there should be a more prominent warning, but there is an explanation at the beginning of the documents -

Since the toolbar is primarily useful for images, it is automatically disabled if there are no images in the current gallery. Set the option enabled: true to display a toolbar for any type of content.

https://fancyapps.com/fancybox/plugins/toolbar/

from ui.

NoxChist avatar NoxChist commented on June 2, 2024

Sorry, but you probably didn’t look carefully at the presented method; the toolbar is enabled in it

methods: {
startFancy(pdfSrc) {
const options = {
Toolbar: {
enabled: true,

absolute:false,
display: {
left: [],
middle: ["zoomIn", "zoomOut"],
right: ["download", "close"],
},
}
};
const app = createApp(PdfViewer, { pdfSrc });
const vm = app.mount(document.createElement('div'));

Fancybox.show([
{
src: vm.$el,
type:"html",
},
], options);
}},

and I get the container
fancybox__container is-compact has-toolbar

from ui.

fancyapps avatar fancyapps commented on June 2, 2024

Hmm, can you show some live demo?

from ui.

fancyapps avatar fancyapps commented on June 2, 2024

In general, the toolbar is not shown if there is no point in showing it. For example, what's the point of zoom in/out buttons if they won't work, or show a slideshow, next/prev arrows if there's no gallery, show a thumbnail icon if there's no thumbs, etc.

from ui.

fancyapps avatar fancyapps commented on June 2, 2024

I've created two demos showing how to display download and close buttons on the toolbar for any content type:

https://jsfiddle.net/qbu1p45z/

<button data-fancybox data-src="#dialog-content" data-download-src="https://fancyapps.com/sample.pdf">Launch Dialog</button>
Fancybox.bind('[data-fancybox]', {
  Toolbar: {
    enabled: true,
    absolute:false,
    display: {
      left: [],
      right: ["download", "close"],
    },
  }
});    

https://jsfiddle.net/fgdnmjhv/

Fancybox.show([{
  src : "#dialog-content",
  type: "clone",
  downloadSrc: "https://fancyapps.com/sample.pdf"
}], {
  Toolbar: {
    enabled: true,
    absolute:false,
    display: {
      left: [],
      right: ["download", "close"],
    },
  }
});    

from ui.

Related Issues (20)

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.