如题 ,现在论坛的图片点击后都是直接打开一个新页面,不能切换到下一张图,关闭也比较麻烦,客户体验不好
怎么改为 点击后使用弹层放大?
放一张图测试
layer.photos({ photos: '.class p ',//class p 换成你img外层的class名称 anim: 0 //0-6的选择 动画类型 });
放到js里,如果是自己的模板,还需要包含layui的js
$(".content_html img").each(function(){ $(this).click(function(){ window.open($(this).attr('src')); }); }); $(".ShowComment .replycontent img").each(function(){ $(this).click(function(){ window.open($(this).attr('src')); }); $(this).css({"max-width":'700px',}); });
这里bbs/content/pc_show window.open弹出了图片,自己去掉就好,不过你要修改官方代码,就不太好升级了