Is there a simple way to display a color bitmap in grayscale with just HTML/CSS?
HTML/CSS
It doesn\'t need to be IE-compatible (and I imagine it won\'t be) -- if
Maybe this way help you
img { -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */ filter: grayscale(100%); }
w3schools.org