console
<h2> 原始图像</h2>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">
<h2><code>反色(60%)</code> | <code>反色(90%)</code></h2>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/sports-q-c-1000-600-3.jpg">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
margin: 20px auto;
font-family: 'Roboto';
}
h2 {
margin: 20px;
padding-top: 20px;
clear:both;
}
img {
max-width: 50%;
margin: 0 auto;
padding: 2px;
}
img:nth-of-type(1) {
width: 100%;
}
img:nth-of-type(2) {
-webkit-filter: invert(90%);
filter: invert(60%);
}
img:nth-of-type(3) {
-webkit-filter: invert(90%);
filter: invert(90%);
}