CSS 图片库
CSS 可用于创建图片库。
图片库
下面这个图片库是使用 CSS 创建的:
实例
<html><head><style>div.gallery {margin: 5px;border: 1px solid #ccc;float: left;width: 180px;}div.gallery:hover {border: 1px solid #777;}div.gallery img {width: 100%;height: auto;}div.desc {padding: 15px;text-align: center;}</style></head><body><div class="gallery"><a target="_blank" href="/uploads/i/css/photo/tulip-yellow.jpg"><img src="/uploads/i/css/photo/tulip-yellow.jpg" alt="Cinque Terre" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div><div class="gallery"><a target="_blank" href="img_forest.jpg"><img src="img_forest.jpg" alt="Forest" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div><div class="gallery"><a target="_blank" href="img_lights.jpg"><img src="img_lights.jpg" alt="Northern Lights" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div><div class="gallery"><a target="_blank" href="img_mountains.jpg"><img src="img_mountains.jpg" alt="Mountains" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div></body></html>
更多实例
响应式图库
如何使用 CSS 媒体查询创建响应式图库,在台式机、平板电脑和智能手机上看起来都不错。
<head><style>div.gallery {border: 1px solid #ccc;}div.gallery:hover {border: 1px solid #777;}div.gallery img {width: 100%;height: auto;}div.desc {padding: 15px;text-align: center;}* {box-sizing: border-box;}.responsive {padding: 0 6px;float: left;width: 24.99999%;}@media only screen and (max-width: 700px) {.responsive {width: 49.99999%;margin: 6px 0;}}@media only screen and (max-width: 500px) {.responsive {width: 100%;}}.clearfix:after {content: "";display: table;clear: both;}</style></head><body><h1>响应式图片库</h1><h2>请调整窗口大小来查看效果。</h2><div class="responsive"><div class="gallery"><a target="_blank" href="/uploads/i/css/photo/tulip-yellow.jpg"><img src="/uploads/i/css/photo/tulip-yellow.jpg" alt="黄色郁金香" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div></div><div class="responsive"><div class="gallery"><a target="_blank" href="/uploads/i/css/photo/tulip-red.jpg"><img src="/uploads/i/css/photo/tulip-red.jpg" alt="红色郁金香" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div></div><div class="responsive"><div class="gallery"><a target="_blank" href="/uploads/i/css/photo/flower-1.jpg"><img src="/uploads/i/css/photo/flower-1.jpg" alt="花花草草" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div></div><div class="responsive"><div class="gallery"><a target="_blank" href="/uploads/i/css/photo/flower-2.jpg"><img src="/uploads/i/css/photo/flower-2.jpg" alt="花花草草" width="600" height="400"></a><div class="desc">在此处添加图像描述</div></div></div><div class="clearfix"></div><div style="padding:6px;"><p>本例使用媒体查询来重新排列不同屏幕尺寸的图像:对于宽于 700 像素的屏幕,它将并排显示四幅图像;对于小于 700 像素的屏幕,将并排显示两幅图像。对于小于 500 像素的屏幕,图像将垂直堆叠(100%)。</p><p>您稍后将在我们的 CSS 教程中学到有关媒体查询和响应式 Web 设计的更多知识。</p></div></body>
