Google Maps in Grayscale

后端 未结 8 622
误落风尘
误落风尘 2021-01-30 05:01

Is there any way to display a Google Map (embedded via the Javascript API) in grayscale without losing any other functionality?

8条回答
  •  迷失自我
    2021-01-30 05:47

    Use the CSS filter property to convert the google map to black and white. 100% is completely black and white

    selector {
      -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
      filter: grayscale(100%);
    }
    

提交回复
热议问题