博主的随机 NoThumb
Posted
技术标签:
【中文标题】博主的随机 NoThumb【英文标题】:Random NoThumb For Blogger 【发布时间】:2021-09-16 11:28:33 【问题描述】:有什么方法可以在博客中制作多个默认缩略图?我想在没有发布图片时随机选择三张图片。
谢谢!
【问题讨论】:
【参考方案1】:您可以将Math.random()
与数组一起使用,例如
let thumbnails = ["thumb-1.png","thumb-2.png","thumb-3.png"];
// inside loop or whatever
if(/*check if post has thumbnail*/)
// use post thumbnail
// ...
else // else if no thumbnail use fallback
let noThumb = thumbnails[Math.floor(Math.random()*thumbnails.length)]
console.log(noThumb) // random thumbnail
【讨论】:
以上是关于博主的随机 NoThumb的主要内容,如果未能解决你的问题,请参考以下文章