我想在我的網站上添加一個橫幅,它顯示特定圖片池的隨機圖片,在刷新后發生變化。我如何搜索這樣的文檔?我不知道我要搜索什么關鍵詞。主要是尋找一個有角度的解決方案。 提前萬分感謝!
你應該提供一些更相關的代碼,特別是要詳細說明你已經嘗試做了什么,以及它讓你走了多遠。如果我對你的問題理解得夠清楚的話,你有一個預先存在的URL數組,并且想在每次顯示一個頁面或呈現一個組件時簡單地選擇一個。
const images = ['https://picsum.photos/id/9/5000/3269', 'https://picsum.photos/id/11/2500/1667', 'https://picsum.photos/id/21/3008/2008'];
// pick a random item from the list
const rand = Math.floor(Math.random()*images.length);
const src = images[rand];
console.log(rand, src);
// just use the src value in your component, it will get a new one each time it is mounted or rendered
// or, build a DOM element if not in a framework
const img = document.createElement('IMG');
img.src = src;
img.style.width = "100vw";
document.body.appendChild(img);