为评论区添加图片预览
大约 1 分钟...
有很多插件可以实现灯箱效果,下面是这些插件的例子:
LightGallery
在你的 HTML <head>
前写入以下内容,其中 #waline-comment
是你的 Waline 评论框,需要根据实际场景进行替换。
<link
rel="stylesheet"
href="https://unpkg.com/lightgallery@v2/css/lightgallery-bundle.css"
/>
<srciprt src="https://unpkg.com/lightgallery@v2/lightgallery.umd.min.js" />
<script>
document.addEventListener('click', (e) => {
const images = [].slice
.call(document.querySelectorAll('#waline-comment .vcontent img'))
.filter((img) => img.width > 20);
if (images.indexOf(e.target) === -1) {
return;
}
if (!e.target.gallery) {
e.target.gallery = window.lightGallery(e.target.parentNode);
}
e.target.gallery.openGallery(0);
});
</script>
Lightbox2
在你的 HTML <head>
前写入以下内容,其中 #waline-comment
是你的 Waline 评论框,需要根据实际场景进行替换。
<link
rel="stylesheet"
href="https://unpkg.com/lightbox2@v2/dist/css/lightbox.min.css"
/>
<script src="https://unpkg.com/lightbox2@v2/dist/js/lightbox-plus-jquery.min.js"></script>
<script>
document.addEventListener('click', (e) => {
const lightbox = new Lightbox();
const images = [].slice
.call(document.querySelectorAll('#waline-comment .vcontent img'))
.filter((img) => img.width > 20);
if (images.indexOf(e.target) === -1) {
return;
}
const $link = $('<a />', {
href: e.target.src,
'data-title': e.target.alt,
rel: 'lightbox',
});
lightbox.start($link);
});
</script>
Fancybox
在你的 HTML <head>
前写入以下内容,其中 #waline-comment
是你的 Waline 评论框,需要根据实际场景进行替换。
<script src="https://unpkg.com/@fancyapps/ui/dist/fancybox.umd.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/@fancyapps/ui/dist/fancybox.css"
/>
<script>
Fancybox.bind('#waline-comment .vcontent img');
</script>
友情提示:评论区仅作评论展示,如有问题咨询请去 Github Discussion 中提问。
你认为这篇文章怎么样?
- 0
- 0
- 0
- 0
- 0
- 0
Powered by Waline v3.3.2