body {
margin: 0;
padding: 20px;
backgroundcolor: f5f5f5;
fontfamily: Arial, sansserif;
}
h1 {
textalign: center;
marginbottom: 30px;
}
.imagecontainer {
display: grid;
gridtemplatecolumns: repeat(4, 1fr);
gap: 20px;
margintop: 40px;
}
.imagecard {
border: 1px solid ccc;
padding: 10px;
textalign: center;
cursor: pointer;
}
.imagecard img {
maxwidth: 100%;
transition: opacity 0.3s;
}
.imagecard:hover {
opacity: 0.8;
}
a {
color: blue;
textdecoration: none;
}
女性健美服图片
function openImage(index) {
var imgElement = document.querySelector('.imagecard img');
imgElement.src = `yourimage${index}.jpg`; // 请将此处替换为你的实际图片链接
imgElement.style.display = 'block';
}