了解如何使用CSS來風格的圖像。
圓形圖片
使用border-radius
屬性創建圓形圖片:
縮略圖圖像
使用border
屬性創建縮略圖。
縮略圖:
例
img {
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 >
試一試» 響應圖片
響應圖像會自動調整以適應屏幕大小。
調整瀏覽器窗口中看到的效果:
如果你想要一個圖像縮放下來,如果它有,但從來沒有擴展到比其原始尺寸,添加以下內容:
提示:了解更多關於我們的自適應網頁設計CSS教程RWD 。
圖像文本
如何將圖像中的位置的文字:
寶麗來照片/卡
巨魔的哈當厄爾,挪威舌頭
在挪威的北極光
例
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中,邊緣12或Safari 5.1和更早版本不支持濾鏡屬性。
例
將所有圖像,以黑色和白色(100%灰)色:
img {
-webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
filter: grayscale(100%);
}
提示:去我們的CSS濾鏡參考 ,以了解更多關於CSS濾鏡。
響應圖片廊
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%;
}
}
試一試» 提示:了解更多關於我們的自適應網頁設計CSS教程RWD 。
圖像模態(高級)
這是演示如何CSS和JavaScript可以一起工作的例子。
首先,使用CSS來創建一個模態窗口(對話框),默認情況下將其隱藏。
然後,使用JavaScript來顯示模式窗口,並顯示模式裡的圖像,當用戶點擊了圖片:
例
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it
inside the modal - use its "alt" text as a caption
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 <span> element that closes the modal
var span =
document.getElementsByClassName("close")[0];
// When the user clicks
on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
試一試» ×