0

我正在使用 ekko 灯箱(http://ashleydw.github.io/lightbox/)+ tinymce 5。我有 img-fluid 类,因此图像被调整大小。我现在的想法是使用 lightbox 只是在模态中打开它而不需要包装它,因为我不知道让 timymce 用 href 和一些额外的属性包装 img 是否简单。

那么如何仅通过单击包含该图像的 img 标签来弹出图像我 ekko 灯箱?

谢谢

4

1 回答 1

1

完成,我自己找到了。所以我只是这样做了:

  $('img[data-toggle="lightbox"],img.thickbox').each(function(){
    if (!$(this).attr("data-remote")){
      $(this).attr("data-remote", $(this).attr("src")).css("cursor", "pointer");
    }
  });

在tinymce配置中:

            image_class_list: [
              {
                title: 'None', value: ''}
              ,
              {
                title: 'Responsive image', value: 'img-fluid'
              }
              ,
              {
                title: 'Responsive image + modal', value: 'img-fluid thickbox'
              }
            ],
于 2020-04-28T21:08:51.067 回答