forked from itbruno/InContent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (135 loc) · 4.34 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<title>InContent - A content image hover effects.</title>
<meta charset="utf-8" />
<!-- Main CSS -->
<link rel="stylesheet" href="css/sass-compiled.css" />
<!-- Modrnizr Lib -->
<script src="libs/modernizr.js" type="text/javascript"></script>
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Header with title-->
<header>
<div class="wrapper">
<h1>InContent</h1>
<p>Image content with description building with CSS3 and LESS/SASS.</p>
</div>
</header>
<!-- Begin of Effects -->
<section class="wrapper cl">
<!--Effect: Bottom to Top -->
<div class="pic">
<img src="img/01.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption bottom-to-top">
<h1 class="pic-title">Bottom to Top</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Top to Bottom -->
<div class="pic">
<img src="img/02.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption top-to-bottom">
<h1 class="pic-title">Top to Bottom</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Left to Right -->
<div class="pic">
<img src="img/03.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption left-to-right">
<h1 class="pic-title">Left to Right</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Right to Left -->
<div class="pic">
<img src="img/04.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption right-to-left">
<h1 class="pic-title">Right to Left</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Rotate More -->
<div class="pic">
<img src="img/05.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption rotate-in">
<h1 class="pic-title">Rotate In</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Rotate LESS -->
<div class="pic">
<img src="img/06.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption rotate-out">
<h1 class="pic-title">Rotate Out</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Open Up -->
<div class="pic pic-3d">
<img src="img/07.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption open-up">
<h1 class="pic-title">Open Up</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Open Down -->
<div class="pic pic-3d">
<img src="img/08.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption open-down">
<h1 class="pic-title">Open Down</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Open Left -->
<div class="pic pic-3d">
<img src="img/09.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption open-left">
<h1 class="pic-title">Open Left</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Open Right -->
<div class="pic pic-3d">
<img src="img/10.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption open-right">
<h1 class="pic-title">Open Right</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Come Left -->
<div class="pic pic-3d">
<img src="img/11.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption come-left">
<h1 class="pic-title">Come Left</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
<!--Effect: Come Right -->
<div class="pic pic-3d">
<img src="img/12.jpg" class="pic-image" alt="Pic"/>
<span class="pic-caption come-right">
<h1 class="pic-title">Come Right</h1>
<p>Hi, this is a simple example =D</p>
</span>
</div>
</section>
<!-- End of effects -->
<footer>
<section class="wrapper">
<span class="pull-right">
</span>
<p>
InContent by <a href="http://bit.ly/BrunoTw" title="Follow Bruno Rodrigues">Bruno Rodrigues.</a> | Images from <a href="http://www.dribbble.com" title="Dribbble">Dribbble</a>.
</p>
</section>
</footer>
<!-- TOUCH FRIENDLY IN MOBILE DEVICES -->
<script>
document.addEventListener("touchstart", function(){}, true);
</script>
</body>
</html>