-
Notifications
You must be signed in to change notification settings - Fork 71
/
index3.html
66 lines (66 loc) · 3.13 KB
/
index3.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
<!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>Perspective Page View Navigation</title>
<meta name="description" content="Perspective Page View Navigation: Transforms the page in 3D to reveal a menu" />
<meta name="keywords" content="3d page, menu, navigation, mobile, perspective, css transform, web development, web design" />
<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/component.css" />
<!-- csstransforms3d-shiv-cssclasses-prefixed-teststyles-testprop-testallprops-prefixes-domprefixes-load -->
<script src="js/modernizr.custom.25376.js"></script>
</head>
<body>
<div id="perspective" class="perspective effect-rotateleft">
<div class="container">
<div class="wrapper"><!-- wrapper needed for scroll -->
<!-- Top Navigation -->
<div class="codrops-top clearfix">
<a class="codrops-icon codrops-icon-prev" href="http://tympanus.net/Development/ProgressButtonStyles/"><span>Previous Demo</span></a>
<span class="right"><a class="codrops-icon codrops-icon-drop" href="http://tympanus.net/codrops/?p=17915"><span>Back to the Codrops Article</span></a></span>
</div>
<header class="codrops-header">
<h1>Perspective Page View Navigation <span>Transforms the page in 3D to reveal a menu</span></h1>
</header>
<div class="main clearfix">
<div class="column">
<p><button id="showMenu">Show Menu</button></p>
<p>Click on this button to see the content being pushed away in 3D to reveal a navigation or other items.</p>
</div>
<div class="column">
<nav class="codrops-demos">
<a href="index.html">Airbnb Effect</a>
<a href="index2.html">Move Left</a>
<a href="index3.html" class="current-demo">Rotate Left</a>
<a href="index4.html">Move Down</a>
<a href="index5.html">Rotate Top</a>
<a href="index6.html">Lay Down</a>
</nav>
</div>
<div class="related">
<p>If you enjoyed this demo you might also like:</p>
<p><a href="http://tympanus.net/Tutorials/AnimatedBorderMenus/">Animated Border Menus</a></p>
<p><a href="http://tympanus.net/Development/SidebarTransitions/">Transitions for Off-Canvas Navigations</a></p>
</div>
</div><!-- /main -->
</div><!-- wrapper -->
</div><!-- /container -->
<nav class="outer-nav right vertical">
<a href="#" class="icon-home">Home</a>
<a href="#" class="icon-news">News</a>
<a href="#" class="icon-image">Images</a>
<a href="#" class="icon-upload">Uploads</a>
<a href="#" class="icon-star">Favorites</a>
<a href="#" class="icon-mail">Messages</a>
<a href="#" class="icon-lock">Security</a>
</nav>
</div><!-- /perspective -->
<script src="js/classie.js"></script>
<script src="js/menu.js"></script>
</body>
</html>