sailei1 / blog

1 stars 0 forks source link

支持webp 图片格式判断 #66

Closed sailei1 closed 5 years ago

sailei1 commented 5 years ago
var isSupportWebp = function () {
  try {
    return document.createElement('canvas').toDataURL('image/webp', 0.5).indexOf('data:image/webp') === 0;
  } catch(err) {
    return false;
  }
}

isSupportWebp()