-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (81 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Annotation Overlay Effect with CSS3</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Annotation Overlay Effect with CSS3" />
<meta name="keywords" content="css3, overlay, effect, images, portfolio, annotation, tagging, transition" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Alegreya+SC:700,400italic' rel='stylesheet' type='text/css' />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE 9]>
<script type="text/javascript" src="js/modernizr.custom.04022.js"></script>
<style>.ie-note-1{display:block;}</style>
<![endif]-->
<!--[if lt IE 10]><style>.ie-note-2{display:block;}</style><![endif]-->
</head>
<body>
<div class="container">
<!-- Codrops top bar -->
<div class="codrops-top">
<a href="http://tympanus.net/Development/FlipboardPageLayout/">
<strong>« Previous Demo: </strong>Flipboard Page Layout
</a>
<span class="right">
<a href="http://www.alessioatzeni.com/blog/simple-arrows-psd/">Arrows by Alessio Atzeni</a>
<a href="http://themeforest.net/item/blenton-premium-wordpress-template/1995225">Theme Preview by Ana Segota</a>
<a href=" http://tympanus.net/codrops/2012/05/14/annotation-overlay-effect-with-css3/">
<strong>Back to the Codrops Article</strong>
</a>
</span>
<div class="clr"></div>
</div><!--/ Codrops top bar -->
<header>
<h1>Annotation Overlay Effect <span>with CSS3</span></h1>
<p>Make some simple annotations to images/items and show them on click</p>
<h2 class="ie-note ie-note-1">CSS3 Selectors don't work in Internet Explorer < 9</h2>
<h2 class="ie-note ie-note-2">CSS3 Transitions don't work in Internet Explorer < 10</h2>
</header>
<section>
<div class="ao-item">
<div class="ao-details">
<h2>Blenton Wordpress Theme</h2>
<p>Blenton is a simple and clean Wordpress theme which was made with a lot of attention to detail. It is suitable for commercial and private projects and comes with a variety of features.</p>
<p><a href="http://themeforest.net/item/blenton-premium-wordpress-template/1995225">Take a look →</a></p>
</div>
<div class="ao-preview">
<input type="checkbox" id="ao-toggle" class="ao-toggle" name="ao-toggle" />
<img src="images/Anariel_BlentonTemplate.jpg" alt="image01" />
<div class="ao-annotations">
<span>Full Localisation Support</span>
<span>Custom Image Widget</span>
<span>Blog and Contact Widgets</span>
<span>Easy Theme Options</span>
<span>4 Footer Widget Columns</span>
</div>
</div>
</div>
<div class="ao-item ao-item-left">
<div class="ao-details">
<h2>Blenton is elegant</h2>
<p>The design of Blenton makes a great match with a portfolio. It comes with many features like full localisation support and easy theme options.</p>
<p><a href="http://themeforest.net/item/blenton-premium-wordpress-template/1995225">Buy the theme →</a></p>
</div>
<div class="ao-preview">
<input type="checkbox" id="ao-toggle" class="ao-toggle" name="ao-toggle" />
<img src="images/Anariel_UnixTemplate.jpg" alt="image02" />
<div class="ao-annotations">
<span>Easy Logo Upload</span>
<span>Custom Post Portfolio</span>
<span>Custom Background Color and Pattern</span>
</div>
</div>
</div>
</section>
</div>
</body>
</html>