首页htmlwebkit_filterCSS Property Value - 如何webkit-filter: grayscale(100%) sepia(100%);

CSS Property Value - 如何webkit-filter: grayscale(100%) sepia(100%);

我们想知道如何webkit-filter: grayscale(100%) sepia(100%);

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div:hover {
  opacity: .5;
  -webkit-filter: grayscale(100%) sepia(100%);
}
</style>
</head>
<body>
  <div>
    <img src="http://www.w3cschool.cn/style/download.png" />
  </div>
</body>
</html>