-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (35 loc) · 1.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image Dragging Effect | Crimson </title>
<link rel="stylesheet" href="https://use.typekit.net/wwn4ioo.css">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
</head>
<body class="demo-8 loading">
<main><div class="frame">
<h3 class="frame__initials">AG</h3>
<p class="frame__info">Drag the images</p>
</div>
<div class="content">
<div class="content__drag-area">
<div class="img-wrap">
<img class="img-trail" src="img/12.jpg"></img>
<img class="img-trail" src="img/13.jpg"></img>
<img class="img-trail" src="img/14.jpg"></img>
<img class="img-trail" src="img/15.jpg"></img>
<img class="img-trail" src="img/16.jpg"></img>
<img class="img-trail" src="img/17.jpg"></img>
<div class="img-drag" style="background-image: url(img/18.jpg);"></div>
</div>
</div>
<h2 class="content__title">Antonella Gallo</h2>
</div>
</main>
<script src="js/index.js"></script>
</body>
</html>