Pointer media query

Pointer media query 用來檢查瀏覽裝置是否有精確的pointer,例如滑鼠、手機觸控螢幕。

三種設定值可以使用:

  • none: 裝置沒有 pointing device
  • coarse: 裝置有精準度有限的 pointing device
  • fine: 裝置有高精準度的 pointing device

Example:

CodePen

input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  background: gray;
}

input[type="checkbox"]:checked {
  background: black;
}

/* 當 pointing device 精準度有限時放大 checkbox */
@media (pointer: coarse) {
  input[type="checkbox"] {
    height: 40px;
    width: 40px;
  }
}
© 2019 Hau Chen