mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-31 09:07:47 +01:00
css only, animated hamburger icon, fixes #32 even more
This commit is contained in:
parent
0f51def0d7
commit
d3ce8295cb
@ -75,18 +75,22 @@ function stickyNav() {
|
|||||||
|
|
||||||
|
|
||||||
function mobileNav() {
|
function mobileNav() {
|
||||||
$('.hamburger').click(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
var popup = $('.mobile-nav');
|
var hamburger = $('.hamburger'),
|
||||||
|
popup = $('.mobile-nav');
|
||||||
|
|
||||||
|
hamburger.click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
// toggle popup
|
// toggle popup
|
||||||
popup.toggleClass('active');
|
popup.toggleClass('active');
|
||||||
|
hamburger.toggleClass('open');
|
||||||
|
|
||||||
// bind the hide controls
|
// bind the hide controls
|
||||||
$(document).bind('click.hidepopup', function() {
|
$(document).bind('click.hidepopup', function() {
|
||||||
// hide popup
|
// hide popup
|
||||||
popup.removeClass('active');
|
popup.removeClass('active');
|
||||||
|
hamburger.removeClass('open');
|
||||||
// unbind the hide controls
|
// unbind the hide controls
|
||||||
$(document).unbind('click.hidepopup');
|
$(document).unbind('click.hidepopup');
|
||||||
});
|
});
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
@import 'ascribe/_footer.less';
|
@import 'ascribe/_footer.less';
|
||||||
|
|
||||||
@import 'ascribe/_hero.less';
|
@import 'ascribe/_hero.less';
|
||||||
|
@import 'ascribe/_hamburger.less';
|
||||||
@import 'ascribe/_header.less';
|
@import 'ascribe/_header.less';
|
||||||
@import 'ascribe/_subtemplates.less';
|
@import 'ascribe/_subtemplates.less';
|
||||||
@import 'ascribe/_feature-circles.less';
|
@import 'ascribe/_feature-circles.less';
|
||||||
|
69
assets/_src/less/ascribe/_hamburger.less
Normal file
69
assets/_src/less/ascribe/_hamburger.less
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
//
|
||||||
|
// Ascribe
|
||||||
|
// -----------------
|
||||||
|
// Omnomnom, CSS only hamburger
|
||||||
|
//
|
||||||
|
|
||||||
|
.hamburger {
|
||||||
|
cursor: pointer;
|
||||||
|
margin: 0 5px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 50;
|
||||||
|
width: 25px;
|
||||||
|
height: 25px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
|
||||||
|
// button reset
|
||||||
|
background: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
span {
|
||||||
|
&,
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
border-radius: 9px;
|
||||||
|
height: 4px;
|
||||||
|
width: 100%;
|
||||||
|
background: @blueBright;
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
content: '';
|
||||||
|
transition: .3s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
top: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
bottom: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// open state
|
||||||
|
&.open {
|
||||||
|
span {
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
&:before,
|
||||||
|
&:after {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: @phoneWidth) {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
@ -165,8 +165,6 @@
|
|||||||
margin-top: 35px;
|
margin-top: 35px;
|
||||||
.signInUpText;
|
.signInUpText;
|
||||||
color: @black;
|
color: @black;
|
||||||
position:relative;
|
|
||||||
z-index:3;
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
.signInUpText;
|
.signInUpText;
|
||||||
@ -177,18 +175,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.hamburger {
|
|
||||||
cursor:pointer;
|
|
||||||
width: 25px;
|
|
||||||
margin-left: 15px;
|
|
||||||
position: relative;
|
|
||||||
top: 2px;
|
|
||||||
z-index:50;
|
|
||||||
|
|
||||||
@media screen and (max-width: @phoneWidth) {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mobile-nav {
|
.mobile-nav {
|
||||||
display: none;
|
display: none;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
@ -226,8 +213,9 @@
|
|||||||
|
|
||||||
@media screen and (max-width: @phoneWidth) {
|
@media screen and (max-width: @phoneWidth) {
|
||||||
display:none;
|
display:none;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
display:block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,9 @@ require 'controller/init.php';
|
|||||||
<div class="app-links">
|
<div class="app-links">
|
||||||
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
||||||
|
|
||||||
<img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/svg/hamburger.svg" class="phone-only hamburger">
|
<button class="hamburger phone-only">
|
||||||
|
<span></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
||||||
|
@ -20,7 +20,11 @@ $controller = new Controller();
|
|||||||
<a href="<?php echo get_bloginfo('wpurl');?>"><img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/logo/ascribeicon-white.svg" class="logo phone-only"></a>
|
<a href="<?php echo get_bloginfo('wpurl');?>"><img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/logo/ascribeicon-white.svg" class="logo phone-only"></a>
|
||||||
<div class="app-links">
|
<div class="app-links">
|
||||||
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
<a href="<?php echo $signInLink; ?>">Log In</a> / <a href="<?php echo $signUpLink; ?>">Sign Up</a>
|
||||||
<img src="<?php echo WPTHEME_TEMPLATE_URL; ?>/images/svg/hamburger.svg" class="phone-only hamburger">
|
|
||||||
|
<button class="hamburger phone-only">
|
||||||
|
<span></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
<nav class="tour-switcher"><?php wp_nav_menu( array(
|
||||||
'theme_location' => 'landing-menu',
|
'theme_location' => 'landing-menu',
|
||||||
|
Loading…
Reference in New Issue
Block a user