JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
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.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
.menu-icon
.line.top
.line.right
.line.bottom
.line.left
.menu-icon
border: 1px solid #333
height: 40px
cursor: pointer
left: 50%
position: absolute
margin: -20px 0 0 -20px
top: 50%
transition: all 200ms ease-out
width: 40px
&:after, &:before
background:
color: #333
content: ''
height: 1px
left: 50%
top: 50%
transform: translate3d(-50%, -50%, 0) rotate(45deg)
transition: all 400ms cubic-bezier(0.25, 0.60, 0.36, 1)
position: absolute
top: 50%
width: 25px
>.line
background: #333
height: 1px
position: absolute
transition: all .1s cubic-bezier(0.46, 0.03, 0.52, 0.96)
width: 0%
&.top
left: 0
top: 0
transition-delay: .3s
&.bottom
bottom: 0
right: 0
transform: rotate(180deg)
transition-delay: .1s
&.left
left: 0
top: 0
transform: translate3d(0,40px,0) rotate(-90deg)
transform-origin: 0
transition-delay: 0s
&.right
left: 0
top: 0
transform: translate3d(40px,0,0) rotate(90deg)
transform-origin: 0
transition-delay: .2s
&:before
transform: translate3d(-50%, -50%, 0) rotate(-45deg)
transition-delay: 65ms
&:hover
.line
width: 100%
&.top
transition-delay: 0ms
&.right
transition-delay: .1s
&.bottom
transition-delay: .2s
&.left
transition-delay: .3s
&:after
transform: translate3d(-50%, -50%, 0) rotate(225deg)
&:before
transform: translate3d(-50%, -50%, 0) rotate(135deg)
&:active
opacity: .8
transition: none
Also see: Tab Triggers