【发布时间】:2016-10-21 17:34:30
【问题描述】:
标题基本上说明了一切。
我正在尝试将图像更改为图像数组中的随机图像(希望有意义,哈哈)。
如何创建一个图像数组,然后在单击某些内容时将图像更改为随机图像?
<h1>These are just placeholders</h1>
<p>I just want these images to randomly change to an image from an array of images each time they are shown (when "display" isn't "none")</p>
<img src="https://pixabay.com/static/uploads/photo/2013/11/21/07/30/icon-214446_960_720.jpg" class="newsAD"></img>
<img src="https://pixabay.com/static/uploads/photo/2013/11/21/07/30/according-to-214445_960_720.jpg" class="newsAD"></img>
<style>
.newsAD {
width: 150px;
height: 150px;
margin-left: 50px;
background: skyblue;
cursor: default;
box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.4);
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js">
function changeImageToRandomImage() {
// something here that changes image to random image from array of images
}
</script>
【问题讨论】:
-
什么时候没有显示?
-
就像在 CSS 中一样。 ('显示:无')