CSS 圖片
本章節將為大家介紹如何使用 CSS 來布局圖片。
圓角圖片
實例
圓角圖片:
img{
border-radius:8px;
}
border-radius:8px;
}
實例
橢圓形圖片:
img{
border-radius:50%;
}
border-radius:50%;
}
縮略圖
我們使用border
屬性來創建縮略圖。
實例
img{
border:1px solid #ddd;
border-radius:4px;
padding:5px;
}
<img src="paris.jpg" alt="Paris">
border:1px solid #ddd;
border-radius:4px;
padding:5px;
}
<img src="paris.jpg" alt="Paris">
實例
a{
display:inline-block;
border:1px solid #ddd;
border-radius:4px;
padding:5px;
transition:0.3s;
}
a:hover{
box-shadow:0 0 2px 1px rgba
(0, 140, 186, 0.5);
}
<a href="paris.jpg">
<img src="paris.jpg" alt="Paris">
</a>
display:inline-block;
border:1px solid #ddd;
border-radius:4px;
padding:5px;
transition:0.3s;
}
a:hover{
box-shadow:0 0 2px 1px rgba
(0, 140, 186, 0.5);
}
<a href="paris.jpg">
<img src="paris.jpg" alt="Paris">
</a>
響應式圖片
響應式圖片會自動適配各種尺寸的屏幕。
實例中,你可以通過重置瀏覽器大小查看效果:
如果你需要自由縮放圖片,且圖片放大的尺寸不大于其原始的最大值,則可使用以下代碼:
實例
img{
max-width:100%;
height:auto;
}
max-width:100%;
height:auto;
}
提示:Web 響應式設計更多內容可以參考 CSS 響應式設計教程。
圖片文本
如何定位圖片文本:
實例
左下角
左上角
右上角
右下角
居中
嘗試一下:
左上角 ? 右上角 ? 左下角 ? 右下角 ? 居中 ?卡片式圖片
實例
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;
}
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;
}
圖片濾鏡
CSSfilter
屬性用為元素添加可視效果 (例如:模糊與飽和度) 。
注意:Internet Explorer或 Safari 5.1 (及更早版本)不支持該屬性。
實例
修改所有圖片的顏色為黑白 (100% 灰度):
img{
-webkit-filter:grayscale(100%);/* Chrome, Safari, Opera */
filter:grayscale(100%);
}
-webkit-filter:grayscale(100%);/* Chrome, Safari, Opera */
filter:grayscale(100%);
}
提示:訪問 CSS 濾鏡參考手冊 查看更多內容。
響應式圖片相冊
實例
.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%;
}
}
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%;
}
}
圖片 Modal(模態)
本實例演示了如何結合 CSS 和 JavaScript 來一起渲染圖片。
首先,我們使用 CSS 來創建 modal 窗口 (對話框), 默認是隱藏的。
然后,我們使用 JavaScript 來顯示模態窗口,當我們點擊圖片時,圖片會在彈出的窗口中顯示:
實例
// 獲取模態窗口
varmodal = document.getElementById('myModal');
// 獲取圖片模態框,alt 屬性作為圖片彈出中文本描述
varimg = document.getElementById('myImg');
varmodalImg = document.getElementById("img01");
varcaptionText = document.getElementById("caption");
img.onclick =function(){
modal.style.display ="block";
modalImg.src = this.src;
modalImg.alt = this.alt;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
varspan = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick =function() {
modal.style.display ="none";
}
varmodal = document.getElementById('myModal');
// 獲取圖片模態框,alt 屬性作為圖片彈出中文本描述
varimg = document.getElementById('myImg');
varmodalImg = document.getElementById("img01");
varcaptionText = document.getElementById("caption");
img.onclick =function(){
modal.style.display ="block";
modalImg.src = this.src;
modalImg.alt = this.alt;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
varspan = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick =function() {
modal.style.display ="none";
}