forked from codrops/FullscreenOverlayStyles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index6.html
72 lines (72 loc) · 3.01 KB
/
index6.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fullscreen Overlay Styles & Effects | Demo 6</title>
<meta name="description" content="Fullscreen Overlay Styles & Effects" />
<meta name="keywords" content="fullscreen overlay, overlay menu, inspiration, styles, effect, css" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style6.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div class="container">
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/ScatteredPolaroidsGallery/"><span>Previous Demo</span></a>
<span class="right"><a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=18459"><span>Back to the Codrops Article</span></a></span>
</div>
<header class="codrops-header">
<h1>Fullscreen Overlay Styles & Effects</h1>
<nav class="codrops-demos">
<a href="index.html">Huge Inc</a>
<a href="index2.html">Corner</a>
<a href="index3.html">Slide down</a>
<a href="index5.html">Scale</a>
<a class="current-demo" href="index6.html">Door</a>
<a href="index7.html">Content Push</a><br/>
<a href="index8.html">Content Scale</a>
<a href="index9.html">Corner Shape</a>
<a href="index10.html">Little Boxes</a>
<a href="index11.html">Simple Genie</a>
<a href="index12.html">Genie</a>
</nav>
</header>
<section>
<p>Overlay opens like a door from the middle and content fades in.</p>
<p><button id="trigger-overlay" type="button">Open Overlay</button></p>
</section>
<section class="related">
<p>If you enjoyed this demo you might also like:</p>
<a href="http://tympanus.net/Development/PerspectivePageViewNavigation/">
<img src="http://codropspz.tympanus.netdna-cdn.com/codrops/wp-content/uploads/2013/12/PerspectiveNavigation-300x162.png" />
<h3>Perspective Page View Navigation</h3>
</a>
<a href="http://tympanus.net/Tutorials/AnimatedBorderMenus/">
<img src="http://tympanus.net/codrops/wp-content/uploads/2013/09/AnimatedBorderMenus-300x162.png" />
<h3>Animated Border Menus</h3>
</a>
</section>
</div><!-- /container -->
<!-- open/close -->
<div class="overlay overlay-door">
<button type="button" class="overlay-close">Close</button>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Clients</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<script src="js/classie.js"></script>
<script src="js/demo1.js"></script>
</body>
</html>