HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<title>3D Rotating Navigation | CodyHouse</title>
</head>
<body>
<header class="cd-header">
<a href="#0" class="cd-logo"><img src="https://codyhouse.co/demo/3d-rotating-navigation/img/cd-logo.svg" alt="Logo"></a>
<a href="#0" class="cd-3d-nav-trigger">
Menu
<span></span>
</a>
</header> <!-- .cd-header -->
<main>
<h1>3D Rotating Navigation</h1>
<!-- all your content here -->
</main>
<nav class="cd-3d-nav-container">
<ul class="cd-3d-nav">
<li class="cd-selected">
<a href="#0">Dashboard</a>
</li>
<li>
<a href="#0">Projects</a>
</li>
<li>
<a href="#0">Images</a>
</li>
<li>
<a href="#0">Settings</a>
</li>
<li>
<a href="#0">New</a>
</li>
</ul> <!-- .cd-3d-nav -->
<span class="cd-marker color-1"></span>
</nav> <!-- .cd-3d-nav-container -->
</body>
</html>
/* https://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* --------------------------------
Primary style
-------------------------------- */
*, *::after, *::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
html {
font-size: 62.5%; }
body {
font-size: 1.6rem;
font-family: "Open Sans", sans-serif;
background-color: #485274; }
a {
text-decoration: none; }
/* --------------------------------
Main Components
-------------------------------- */
.cd-header {
height: 80px;
width: 90%;
margin: 0 auto;
-webkit-transition: -webkit-transform 0.5s;
-moz-transition: -moz-transform 0.5s;
transition: transform 0.5s;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.cd-header:after {
content: "";
display: table;
clear: both; }
.cd-header.nav-is-visible {
-webkit-transform: translateY(80px);
-moz-transform: translateY(80px);
-ms-transform: translateY(80px);
-o-transform: translateY(80px);
transform: translateY(80px); }
@media only screen and (min-width: 768px) {
.cd-header.nav-is-visible {
-webkit-transform: translateY(170px);
-moz-transform: translateY(170px);
-ms-transform: translateY(170px);
-o-transform: translateY(170px);
transform: translateY(170px); } }
.cd-logo {
float: left;
margin-top: 28px; }
.cd-3d-nav-trigger {
position: relative;
float: right;
height: 45px;
width: 45px;
margin-top: 18px;
/* replace text with background image */
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
color: transparent; }
.cd-3d-nav-trigger span,
.cd-3d-nav-trigger span::before,
.cd-3d-nav-trigger span::after {
/* hamburger icon in CSS */
position: absolute;
width: 28px;
height: 3px;
background-color: #FFF;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.cd-3d-nav-trigger span {
/* this is the central line */
top: 21px;
left: 8px;
-webkit-transition: background 0.2s 0.5s;
-moz-transition: background 0.2s 0.5s;
transition: background 0.2s 0.5s; }
.cd-3d-nav-trigger span::before, .cd-3d-nav-trigger span:after {
/* these are the upper and lower lines */
content: '';
left: 0;
-webkit-transition: -webkit-transform 0.2s 0.5s;
-moz-transition: -moz-transform 0.2s 0.5s;
transition: transform 0.2s 0.5s; }
.cd-3d-nav-trigger span::before {
bottom: 8px; }
.cd-3d-nav-trigger span::after {
top: 8px; }
.nav-is-visible .cd-3d-nav-trigger span {
/* hide line in the center */
background-color: rgba(255, 255, 255, 0); }
.nav-is-visible .cd-3d-nav-trigger span::before, .nav-is-visible .cd-3d-nav-trigger span::after {
/* keep visible other 2 lines */
background-color: white; }
.nav-is-visible .cd-3d-nav-trigger span::before {
-webkit-transform: translateY(8px) rotate(-45deg);
-moz-transform: translateY(8px) rotate(-45deg);
-ms-transform: translateY(8px) rotate(-45deg);
-o-transform: translateY(8px) rotate(-45deg);
transform: translateY(8px) rotate(-45deg); }
.nav-is-visible .cd-3d-nav-trigger span::after {
-webkit-transform: translateY(-8px) rotate(45deg);
-moz-transform: translateY(-8px) rotate(45deg);
-ms-transform: translateY(-8px) rotate(45deg);
-o-transform: translateY(-8px) rotate(45deg);
transform: translateY(-8px) rotate(45deg); }
.cd-3d-nav-container {
/* this is the 3D navigation container */
position: fixed;
top: 0;
left: 0;
height: 80px;
width: 100%;
background-color: #000000;
visibility: hidden;
/* enable a 3D-space for children elements */
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
-moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
transition: transform 0.5s 0s, visibility 0s 0.5s; }
.cd-3d-nav-container.nav-is-visible {
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition: -webkit-transform 0.5s 0s, visibility 0.5s 0s;
-moz-transition: -moz-transform 0.5s 0s, visibility 0.5s 0s;
transition: transform 0.5s 0s, visibility 0.5s 0s; }
@media only screen and (min-width: 768px) {
.cd-3d-nav-container {
height: 170px; } }
.cd-3d-nav {
/* this is the 3D rotating navigation */
position: relative;
height: 100%;
background-color: #343c55;
/* Force Hardware Acceleration */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform-origin: center bottom;
-moz-transform-origin: center bottom;
-ms-transform-origin: center bottom;
-o-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
-webkit-transition: -webkit-transform 0.5s;
-moz-transition: -moz-transform 0.5s;
transition: transform 0.5s; }
.cd-3d-nav::after {
/* menu dark cover layer - to enhance perspective effect */
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #000000;
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.5s 0s, visibility 0.5s 0s;
-moz-transition: opacity 0.5s 0s, visibility 0.5s 0s;
transition: opacity 0.5s 0s, visibility 0.5s 0s; }
.cd-3d-nav li {
height: 100%;
width: 20%;
float: left; }
.cd-3d-nav li:first-of-type a::before {
background-image: url(https://codyhouse.co/demo/3d-rotating-navigation/img/icon-1.svg); }
.cd-3d-nav li:nth-of-type(2) a::before {
background-image: url(https://codyhouse.co/demo/3d-rotating-navigation/img/icon-2.svg); }
.cd-3d-nav li:nth-of-type(3) a::before {
background-image: url(https://codyhouse.co/demo/3d-rotating-navigation/img/icon-3.svg); }
.cd-3d-nav li:nth-of-type(4) a::before {
background-image: url(https://codyhouse.co/demo/3d-rotating-navigation/img/icon-4.svg); }
.cd-3d-nav li:nth-of-type(5) a::before {
background-image: url(https://codyhouse.co/demo/3d-rotating-navigation/img/icon-5.svg); }
.cd-3d-nav a {
position: relative;
display: block;
height: 100%;
color: transparent;
-webkit-transition: background-color 0.2s;
-moz-transition: background-color 0.2s;
transition: background-color 0.2s; }
.cd-3d-nav a::before {
/* navigation icons */
content: '';
height: 32px;
width: 32px;
position: absolute;
left: 50%;
top: 50%;
bottom: auto;
right: auto;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
background-size: 32px 64px;
background-repeat: no-repeat;
background-position: 0 0; }
.no-touch .cd-3d-nav a:hover {
background-color: #2b3145; }
.cd-3d-nav .cd-selected a {
background-color: #212635; }
.no-touch .cd-3d-nav .cd-selected a:hover {
background-color: #212635; }
.cd-3d-nav .cd-selected a::before {
background-position: 0 -32px; }
.nav-is-visible .cd-3d-nav {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0); }
.nav-is-visible .cd-3d-nav::after {
/* menu cover layer - hide it when navigation is visible */
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.5s 0s, visibility 0s 0.5s;
-moz-transition: opacity 0.5s 0s, visibility 0s 0.5s;
transition: opacity 0.5s 0s, visibility 0s 0.5s; }
@media only screen and (min-width: 768px) {
.cd-3d-nav a {
padding: 7.6em 1em 0;
color: #ffffff;
font-size: 1.3rem;
font-weight: 600;
text-align: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* truncate text with ellipsis if too long */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.cd-3d-nav a::before {
top: 4.4em;
left: 50%;
right: auto;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%); } }
.cd-marker {
/* line at the bottom of nav selected item */
position: absolute;
bottom: 0;
left: 0;
height: 3px;
width: 20%;
background-color: currentColor;
-webkit-transform-origin: center bottom;
-moz-transform-origin: center bottom;
-ms-transform-origin: center bottom;
-o-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-transform: translateZ(0) rotateX(90deg);
-moz-transform: translateZ(0) rotateX(90deg);
-ms-transform: translateZ(0) rotateX(90deg);
-o-transform: translateZ(0) rotateX(90deg);
transform: translateZ(0) rotateX(90deg);
-webkit-transition: -webkit-transform 0.5s, left 0.5s, color 0.5s, background-color 0.5s;
-moz-transition: -moz-transform 0.5s, left 0.5s, color 0.5s, background-color 0.5s;
transition: transform 0.5s, left 0.5s, color 0.5s, background-color 0.5s; }
.cd-marker::before {
/* triangle at the bottom of nav selected item */
content: '';
position: absolute;
bottom: 3px;
left: 50%;
right: auto;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
height: 0;
width: 0;
border: 10px solid transparent;
border-bottom-color: inherit; }
.nav-is-visible .cd-marker {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0); }
/* these are the colors of the markers - line + arrow */
.color-1 {
color: #9a57bd; }
.color-2 {
color: #c96aa4; }
.color-3 {
color: #d6915e; }
.color-4 {
color: #5397c7; }
.color-5 {
color: #77cd91; }
main {
-webkit-transition: -webkit-transform 0.5s;
-moz-transition: -moz-transform 0.5s;
transition: transform 0.5s;
/* Force Hardware Acceleration in WebKit */
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
main h1 {
text-align: center;
font-size: 2.4rem;
font-weight: 300;
color: #ffffff;
margin: 2em auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
main.nav-is-visible {
-webkit-transform: translateY(80px);
-moz-transform: translateY(80px);
-ms-transform: translateY(80px);
-o-transform: translateY(80px);
transform: translateY(80px); }
@media only screen and (min-width: 768px) {
main.nav-is-visible {
-webkit-transform: translateY(170px);
-moz-transform: translateY(170px);
-ms-transform: translateY(170px);
-o-transform: translateY(170px);
transform: translateY(170px); }
main h1 {
font-size: 3.6rem;
margin: 4em auto; } }
jQuery(document).ready(function($){
//toggle 3d navigation
$('.cd-3d-nav-trigger').on('click', function(){
toggle3dBlock(!$('.cd-header').hasClass('nav-is-visible'));
});
//select a new item from the 3d navigation
$('.cd-3d-nav a').on('click', function(){
var selected = $(this);
selected.parent('li').addClass('cd-selected').siblings('li').removeClass('cd-selected');
updateSelectedNav('close');
});
$(window).on('resize', function(){
window.requestAnimationFrame(updateSelectedNav);
});
function toggle3dBlock(addOrRemove) {
if(typeof(addOrRemove)==='undefined') addOrRemove = true;
$('.cd-header').toggleClass('nav-is-visible', addOrRemove);
$('main').toggleClass('nav-is-visible', addOrRemove);
$('.cd-3d-nav-container').toggleClass('nav-is-visible', addOrRemove);
}
//this function update the .cd-marker position
function updateSelectedNav(type) {
var selectedItem = $('.cd-selected'),
selectedItemPosition = selectedItem.index() + 1,
leftPosition = selectedItem.offset().left,
backgroundColor = selectedItem.data('color');
$('.cd-marker').removeClassPrefix('color').addClass('color-'+ selectedItemPosition).css({
'left': leftPosition,
});
if( type == 'close') {
$('.cd-marker').one('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend', function(){
toggle3dBlock(false);
});
}
}
$.fn.removeClassPrefix = function(prefix) {
this.each(function(i, el) {
var classes = el.className.split(" ").filter(function(c) {
return c.lastIndexOf(prefix, 0) !== 0;
});
el.className = $.trim(classes.join(" "));
});
return this;
};
});
Also see: Tab Triggers