要将图像放在红色div上,可以在类中循环浏览所有图像
.img
使用
.each()
并为每个元素设置图像。
我假设图像名称是
data-id
所有锚的属性(
<a>
)因此,可以使用
.data('id')
. 既然有了图像名,就可以将dom元素“构建”到红色框上,然后使用
.html()
.
请参阅下面的一个工作示例(此示例中的图像不起作用,因为它们还不存在):
$('.img').each((_, elem) => {
let img_id = $(elem).data('id');
let img = `<img style='height: 100%; width: 100%;' src="${img_id}.png" alt='${img_id} image'/>`;
$(elem).html(img);
});
.images {
display: flex;
justify-content: space-between;
position: relative;
width: 700px;
margin: 0 auto;
}
a.img {
content: '';
width: 40px;
height: 40px;
display: block;
background: red;
}
.content {
width: 400px;
height: 100px;
background: blue;
position: absolute;
top: 180px;
left: 50%;
transform: translateX(-50%)
}
.img {
position: absolute;
}
.img1 {
left: -20%;
top: 75px;
}
.img2 {
top: 150px;
left: -5%;
}
.img3 {
top: 20px;
left: 5%;
}
.img4 {
top: 0;
left: 25%;
}
.img5 {
top: 20px;
right: 350px;
}
.img6 {
top: 60px;
right: 250px;
}
.img7 {
top: 30px;
right: 150px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="images">
<a href="#" class="img img1" data-id="review1"></a>
<a href="#" class="img img2" data-id="review2"></a>
<a href="#" class="img img3" data-id="review3"></a>
<a href="#" class="img img4" data-id="review4"></a>
<a href="#" class="img img5" data-id="review5"></a>
<a href="#" class="img img6" data-id="review6"></a>
<a href="#" class="img img7" data-id="review7"></a>
</div>
<div class="content">
</div>