您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“怎么用css偽類解決圖片加載失敗的樣式問題”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么用css偽類解決圖片加載失敗的樣式問題”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
實現代碼
index.html
<h3>未做錯誤處理</h3> <div style="font-size: 0"> <img src="./img/image.jpg" alt="" /> <img src="./img/image-1.jpg" alt="" /> </div> <h3>有錯誤處理</h3> <div style="margin-top: 20px; font-size: 0; display: flex"> <img class="mo-image" src="./img/image.jpg" alt="標題" /> <img class="mo-image" src="./img/image-1.jpg" alt="標題" /> </div>
style.css
img { width: 300px; height: 150px; object-fit: cover; display: inline-block; } .mo-image { display: inline-block; /* transform: scale(1); */ position: relative; } /* 顯示占位圖片 */ .mo-image::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #f5f5f5 url(../img/image-error.jpg) no-repeat center / 50% 50%; color: transparent; } /* 顯示alt中的文字 */ .mo-image::after { content: attr(alt); position: absolute; left: 0; bottom: 0; width: 100%; line-height: 2; background-color: rgba(0, 0, 0, 0.5); color: white; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
讀到這里,這篇“怎么用css偽類解決圖片加載失敗的樣式問題”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。