forked from opt-luo/DemoHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (23 loc) · 820 Bytes
/
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
38
39
40
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Masked image animation</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="🍕">
<div class="🍗">Hover me</div>
<div class="🍜">
<div class="color-overlay"></div>
<div class="white-overlay"></div>
<div class="img-wrapper">
<img src="http://www.journaldugeek.com/wp-content/blogs.dir/1/files/2015/09/chewie-comic.jpeg">
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenMax.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>