Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cobaltapps/e487cd4237d4e44a862e6d5144d29b13 to your computer and use it in GitHub Desktop.
Save cobaltapps/e487cd4237d4e44a862e6d5144d29b13 to your computer and use it in GitHub Desktop.
Hamburger Menu Animation Effects PHP
add_shortcode( 'hamburger_animation_icon', 'custom_hamburger_animation_icon_shortcode' );
function custom_hamburger_animation_icon_shortcode() {
ob_start();
custom_hamburger_animation_icon_content();
$output_string = ob_get_contents();
ob_end_clean();
return $output_string;
}
function custom_hamburger_animation_icon_content() { ?>
<div class="responsive-menu-icon">
<div class="hamburger" id="hamburger-1">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment