最新的Web開發教程
 

CSS圖片


了解如何使用CSS來風格的圖像。


圓形圖片

使用border-radius屬性創建圓形圖片:


巴黎

圓角圖片:

img {
    border-radius: 8px;
}
試一試»
巴黎

盤旋圖片:

img {
    border-radius: 50%;
}
試一試»

縮略圖圖像

使用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 >
試一試»

響應圖片

響應圖像會自動調整以適應屏幕大小。

調整瀏覽器窗口中看到的效果:

挪威

如果你想要一個圖像縮放下來,如果它有,但從來沒有擴展到比其原始尺寸,添加以下內容:

img {
    max-width: 100%;
    height: auto;
}
試一試»

提示:了解更多關於我們的自適應網頁設計CSS教程RWD


圖像文本

如何將圖像中的位置的文字:

挪威
Bottom Left
Top Left
Top Right
Bottom Right
Centered

試一試:

左上» 右上» 左下» 右下» 中心»

寶麗來照片/卡

挪威

巨魔的哈當厄爾,挪威舌頭

挪威

在挪威的北極光

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可以用來創建圖像畫廊。 這個例子使用媒體查詢重新安排在不同屏幕尺寸的圖像。 調整瀏覽器窗口中看到的效果:

Trolltunga挪威
加圖像的描述在這裡
森林
加圖像的描述在這裡
北極光
加圖像的描述在這裡
山
加圖像的描述在這裡

.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";
}
試一試»