mirror of
https://github.com/medialab-prado/poblados-colonizacion-colonias-penitenciarias.git
synced 2024-12-26 04:21:23 +01:00
32 lines
702 B
HTML
32 lines
702 B
HTML
<html>
|
|
<head>
|
|
<script src="jquery-3.2.1.min.js"></script>
|
|
<script src="jquery.event.move.js"></script>
|
|
<script src="jquery.twentytwenty.js"></script>
|
|
<link rel="stylesheet" href="twentytwenty.css" type="text/css" media="screen" />
|
|
<style>
|
|
body {
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
.twentytwenty-before-label::before,
|
|
.twentytwenty-after-label::before {
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container1" class="twentytwenty-container">
|
|
<img src="sotogordo-1945-recorte.jpeg">
|
|
<img src="sotogordo-2016-recorte.jpeg">
|
|
</div>
|
|
<script>
|
|
$(function(){
|
|
$("#container1").twentytwenty({
|
|
before_label: 'Antes',
|
|
after_label: 'Despúes'
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|