19 lines
739 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juxtaposed Lightbox</title>
</head>
<body>
<div class="juxtapose" data-animate="true">
<img src="actual-screenshot1.jpg" alt="An image of the actual implementation" data-label="before">
<img src="poc-screenshot1.jpg" alt="An image of my prototype implementation" data-label="after">
</div>
<script src="https://cdn.knightlab.com/libs/juxtapose/latest/js/juxtapose.min.js"></script>
<link rel="stylesheet" href="https://cdn.knightlab.com/libs/juxtapose/latest/css/juxtapose.css">
</body>
</html>