扫码一下
查看教程更方便
本章节将为大家介绍如何使用 css 来布局图片。
示例
圆角图片:
img { border-radius: 8px; }
示例
椭圆形图片:
img { border-radius: 50%; }
我们使用 border 属性来创建缩略图。
响应式图片会自动适配各种尺寸的屏幕。
实例中,你可以通过重置浏览器大小查看效果:
如果你需要自由缩放图片,且图片放大的尺寸不大于其原始的最大值,则可使用以下代码:
img { max-width: 100%; height: auto; }
如何定位图片文本:
左下角左上角右上角右下角居中
div.polaroid { width: 80%; background-color: white; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } img {width: 100%} div.container { text-align: center; padding: 10px 20px; }
css filter 属性用为元素添加可视效果 (例如:模糊与饱和度) 。
注意: internet explorer 或 safari 5.1 (及更早版本) 不支持该属性。
示例
修改所有图片的颜色为黑白 (100% 灰度):
img { -webkit-filter: grayscale(100%); /* chrome, safari, opera */ filter: grayscale(100%); }
.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%; } }
本实例演示了如何结合 css 和 javascript 来一起渲染图片。
首先,我们使用 css 来创建 modal 窗口 (对话框), 默认是隐藏的。
然后,我们使用 javascript 来显示模态窗口,当我们点击图片时,图片会在弹出的窗口中显示:
// 获取模态窗口 var modal = document.getelementbyid('mymodal'); // 获取图片模态框,alt 属性作为图片弹出中文本描述 var img = document.getelementbyid('myimg'); var modalimg = document.getelementbyid("img01"); var captiontext = document.getelementbyid("caption"); img.onclick = function(){ modal.style.display = "block"; modalimg.src = this.src; modalimg.alt = this.alt; captiontext.innerhtml = this.alt; } // get the element that closes the modal var span = document.getelementsbyclassname("close")[0]; // when the user clicks on (x), close the modal span.onclick = function() { modal.style.display = "none"; }