-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.html
88 lines (83 loc) · 2.8 KB
/
hello.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Surattack · Hello</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="stylesheets/screen.css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<script src="js/jquery-1.10.2.min.js"></script>
</head>
<body>
<header id="header-hello">
<div class="wrap">
<div id="hello-logo">
<a href="#"><img src="img/hello.svg" alt="Hello"></a>
</div>
<h1>Chinito</h1>
<div id="social">
<ul>
<li><a href="#"><img src="img/mail.svg" alt="Mail"></a></li>
<li><a href="#"><img src="img/vimeo.svg" alt="Vimeo"></a></li>
<li><a href="#"><img src="img/tw.svg" alt="Twitter"></a></li>
<li><a href="#"><img src="img/dribbble.svg" alt="Dribbble"></a></li>
<li><a href="#"><img src="img/github.svg" alt="Github"></a></li>
<li><a href="#"><img src="img/gplus.svg" alt="G+"></a></li>
<li><a href="#"><img src="img/yt.svg" alt="YouTube"></a></li>
<li><a href="#"><img src="img/fb.svg" alt="Facebook"></a></li>
<li><a href="#"><img src="img/in.svg" alt="Linkedin"></a></li>
</ul>
</div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<div id="tags">
<ul>
<li><a href="#">Generative Design</a></li>
<li><a href="#">Design</a></li>
<li><a href="#">Code</a></li>
</ul>
</div>
</div>
</header>
<section id="hello-works">
<div class="wrap">
<ul>
<li>
<img src="img/hello.jpg" alt="">
<div class="overlay">
<a class="maintitle" href="#">Nombre del trabajo</a>
<ul>
<li><a href="#">Creative Code</a></li>
<li><a href="#">Code</a></li>
</ul>
</div>
</li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
<li><img src="img/hello.jpg" alt=""></li>
</ul>
</div>
</section>
<section id="pagination">
<div class="wrap">
<a href="#" class="btn mini prev">Prev</a>
<a href="#" class="btn mini next">Next</a>
</div>
</section>
</body>
</html>
<script>
$(document).ready(function(){
$( "li" ).hover(function() {
$(this).find(".overlay").fadeIn();
},function(){
$(this).find(".overlay").fadeOut();
});
})
</script>