body {

fontfamily: Arial, sansserif;
margin: 0;
padding: 20px;
}
h1 {
textalign: center;
marginbottom: 30px;
}
.gallery {
display: grid;
gridtemplatecolumns: repeat(autofit, minmax(200px, 1fr));
gridgap: 20px;
padding: 20px;
}
.imagebox {
border: 1px solid ccc;
padding: 10px;
textalign: center;
cursor: pointer;
}
.imagebox img {
maxwidth: 100%;
marginbottom: 5px;
}
.description {
fontsize: 14px;
color: 666;
}
a {
color: blue;
textdecoration: none;
}
儿童美食图片大全
function openImage(index) {
var gallery = document.querySelector('.gallery');
gallery.style.display = 'flex';
gallery.querySelector(`.imagebox:nthchild(${index})`).style.transform = 'translateY(0)';
setTimeout(() => {
gallery.style.display = 'none';
}, 2000); // 模拟图片加载后隐藏
}
function showMore() {
var moreDiv = document.getElementById('more');
if (moreDiv.style.display === 'none') {
moreDiv.style.display = 'flex';
setTimeout(() => {
moreDiv.style.display = 'none';
}, 2000); // 模拟加载更多后隐藏
} else {
moreDiv.style.display = 'none';
}
}