Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Fluentwpf | 1,193 | 7 | 3 | a year ago | 30 | October 10, 2021 | 37 | mit | C# | |
Fluent Design System for WPF. | ||||||||||
Bmxswipablecell | 143 | 7 years ago | 8 | March 24, 2015 | 7 | mit | Objective-C | |||
A custom UITableViewCell that supports swipe to reveal (similar to iOS7 Mail App) | ||||||||||
Reveallayout | 94 | 2 years ago | lgpl-3.0 | Java | ||||||
揭示效果布局,可以指定2个子布局,以圆形揭示效果切换选中状态 | ||||||||||
Confirm With Reveal | 50 | 2 years ago | January 08, 2015 | 13 | mit | CoffeeScript | ||||
Replacement for window.confirm() using the Reveal modal popup plugin from ZURB Foundation. | ||||||||||
Evslidingtableviewcell | 24 | 2 years ago | mit | Swift | ||||||
Custom UITableViewCell that can be swiped either way to reveal a "drawer" with between 1 and 4 customizable action buttons. These action buttons fade and grow into view as the drawer is swiped. This cell works on all orientations and all devices. | ||||||||||
Advfab | 18 | a year ago | 5 | July 29, 2020 | 2 | mit | Dart | |||
Llswipecell | 18 | 1 | 6 years ago | 2 | April 04, 2016 | 1 | mit | Swift | ||
LLSwipeCell | ||||||||||
Dkaexpandingmenu | 17 | 8 years ago | 1 | March 24, 2015 | mit | Objective-C | ||||
A button that expands to reveal more buttons for iOS. | ||||||||||
Circularrevealbutton | 4 | 3 years ago | 2 | apache-2.0 | Kotlin | |||||
This library provides an easy way to use circular reveal animation with Button, e.g.: for closing a progress, and switching screen. | ||||||||||
Genesis Perspective Page View Navigation | 4 | 6 years ago | PHP | |||||||
Adds an off-canvas navigation area. When you click the menu button, the website will move to the left in perspective, and the menu will reveal itself. |
This plugin implements the Perspective Page View Navigation as seen on the Codrops website, as a WordPress plugin built for use with the Genesis Framework.
Once the plugin is installed and activated it will:
.title-area
element.This "Off Canvas Perspective Page Menu" will be displayed when you click the new menu toggle button. It is set to only show 1 level deep (no submenus), and as you will see it should probably hold a maximum of 7 or 8 links. This menu style is not suited to large, content heavy sites where many bavigation links are present.
The menu toggle button is set to output immediately after the .title-area
element. It has basic styling which places it at the top right of the screen using absolute positioning. This should be overwritten with your own custom CSS.
There is a filter in place which allows the following items to be changed:
$config = apply_filters(
'genesis_perspective_page_view_navigation',
[
'icon' => '<span class="dashicons dashicons-menu"></span>',
'label' => __( 'Menu', 'genesis-perspective-page-view-navigation' ),
'append' => '.title-area',
]
);
You can override with a filter in your functions.php
file, for example to change the button label:
add_filter( 'genesis_perspective_page_view_navigation', 'filter_genesis_perspective_page_view_navigation' );
function filter_genesis_perspective_page_view_navigation( $config ) {
$config['label'] => __( 'Show Menu', 'theme-textdomain' ),
return $config;
}
While this is a fun way to present your site navigation, it is currently not accessible using the keyboard, and does not have the correct Aria landmarks and labels (although I'm working on that). It also won't function when JavaScript is turned off. So be warned.