ร่วมไว้อาลัยถวายแด่ในหลวง
ขออนุญาตแชร์ #โปรแกรมเมอร์ ท่านใดที่มีเว็บ ท่านสามารถเแก้เว็บเป็นสีขาวดำง่ายๆ ให้เข้าไปแก้ใน css ตามโค้ดข้างล่าง
*{
-moz-filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray; /* IE6-9 */
filter: grayscale(100%);
}
ใช้ได้กับแท็กพวก html, body, header และอื่นๆ
ที่มา http://stackoverflow.com/…/is-it-possible-to-turn-an-entire…
อย่างแอดมินมี wordpress ก็กดเข้าไปที่เมนู
รูปแบบบล็อก -> Theme Options -> Other แล้วก็อปปี้วาง
++++++ข้อมูลเพิ่มเติม+++++
แต่ประกี้คุณ อภิเดช เตี่ยไพบูลย์ คอมเมนต์แนะนำมาครับ บางเว็บอาจเกิด Bug ได้ ถ้าใช้โค้ดข้างล่างแบบนี้จะปลอดภัยกว่า
body {
-moz-filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray; /* IE6-9 */
filter: grayscale(100%);
}
+++++ ถ้าจะรองรับ ie10 และ ie11 +++++
ต้องใช้ javascript อันนี้เป็นวิธีของคุณ Destiny Amm แนะนำมา
รูปจะเป็นขาวดำ สำหรับ IE10 และ 11
Search
a img css 在 [CSS學習筆記] img圖片排版 - 1010Code 的推薦與評價
<div class="card"> <img src="#"> </div>. img{ display: block; width: 100%; height: auto; } .card { width: 300px; margin: 0 auto; } ... ... <看更多>