35 lines
799 B
HTML
35 lines
799 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" >
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>CodePen - Pure CSS halftone portrait from .jpg source</title>
|
||
|
<link rel="stylesheet" href="./style.css">
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- partial:index.partial.html -->
|
||
|
<article class='noproc'>
|
||
|
<h3>No image filter</h3>
|
||
|
<section>
|
||
|
<h4>original image</h4>
|
||
|
<div class='original'></div>
|
||
|
<h4>Halftone result</h4>
|
||
|
<div class='halftone'></div>
|
||
|
</section>
|
||
|
</article>
|
||
|
|
||
|
<article class='filter'>
|
||
|
<h3>Filter image beforehand</h3>
|
||
|
<section>
|
||
|
<h4>original image</h4>
|
||
|
<div class='original'></div>
|
||
|
<h4>Halftone result</h4>
|
||
|
<div class='halftone'></div>
|
||
|
</section>
|
||
|
</article>
|
||
|
<!-- partial -->
|
||
|
|
||
|
</body>
|
||
|
</html>
|