Using different data-attribute values for different resolutions in the fotorama plugin

StackOverflow https://stackoverflow.com/questions/22963380

  •  30-06-2023
  •  | 
  •  

Question

I am looking for a way to change the data-attributes according to the resolution, for example, use a smaller data-min-height for smaller resolutions.

How can this be achieved? Thanks for your time!

Was it helpful?

Solution 2

You can use .data() along with $(document).height() or $(window).height():

 $('selector').data('min-height',$(document).height());

OTHER TIPS

try with this function setOptions

fotorama.setOptions({
  nav: false,
  arrows: false
});

Here you can see a example how use the api Move fotorama arrows outside stage

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top