Fotorama - 如何在<div class =“fotorama__stage__frame”>中添加内联样式?

时间:2015-08-04 13:21:50

标签: fotorama

我想为每张图片提供自定义背景。请让我知道每个div.fotorama__stage__frame如何? (必须是内联的,因为每个图像都有不同的背景)

1 个答案:

答案 0 :(得分:0)

我会这样做,但我不知道这是不是正确答案......

绑定&#34; fotorama:show&#34;活动你有机会改变&#34; fotorama__stage&#34;班级

&#13;
&#13;
$('#yourLayerId').on(
  'fotorama:show',
  function (e, fotorama, extra) {
    $('.fotorama__stage').css('background-image', 'your background here');
  }
);
&#13;
&#13;
&#13;

希望得到这个帮助,