層疊樣式表(英文全稱:Cascading Style Sheets)是一種用來表現(xiàn)HTML(標(biāo)準(zhǔn)通用標(biāo)記語言的一個應(yīng)用)或XML(標(biāo)準(zhǔn)通用標(biāo)記語言的一個子集)等文件樣式的計算機語言。CSS不僅可以靜態(tài)地修飾網(wǎng)頁,還可以配合各種 腳本語言動態(tài)地對網(wǎng)頁各元素進行格式化。 |
創(chuàng)新互聯(lián)建站從2013年開始,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目網(wǎng)站制作、成都做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元陽原做網(wǎng)站,已為上家服務(wù),為陽原各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
實例 圓角圖片: img { border-radius: 8px; }
實例 橢圓形圖片: img { border-radius: 50%; }
我們使用 border 屬性來創(chuàng)建縮略圖。
實例 img { border: 1px solid #ddd; border-radius: 4px; padding: 5px; }
實例 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); }
實例 .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%; } }
本實例演示了如何結(jié)合 CSS 和 JavaScript 來一起渲染圖片。
首先,我們使用 CSS 來創(chuàng)建 modal 窗口 (對話框), 默認(rèn)是隱藏的。
然后,我們使用 JavaScript 來顯示模態(tài)窗口,當(dāng)我們點擊圖片時,圖片會在彈出的窗口中顯示:
實例 // 獲取模態(tài)窗口 var modal = document.getElementById('myModal'); // 獲取圖片模態(tài)框,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"; }
原文地址: https://www.linuxprobe.com/css-for-layout.html