Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
This section describes how accessibility is implemented in Flexmonster and how to use its accessibility features in your project.
You can switch to a high-contrast theme by clicking on the grid and pressing Ctrl + Alt + H
.
As a high-contrast theme, Flexmonster uses the CSS file from the theme/accessible/
folder. It has more contrasting colors than the default theme. Besides, this theme is compatible with high-contrast modes
Live example.
You can change the high-contrast theme by setting the accessibility.highContrastTheme property in the new Flexmonster()
API call:
var pivot = new Flexmonster({ container: "pivot-container", componentFolder: "node_modules/flexmonster/", accessibility: { // the path is relative to the componentFolder highContrastTheme: "theme/yourTheme/flexmonster.min.css", }, report: { ... } });
Now the theme from the accessibility.highContrastTheme will be applied when switching to a high-contrast theme.
You can also set the high-contrast theme as the main one by adding a reference to its minified CSS file:
<link rel="stylesheet" type="text/css" href="https://cdn.flexmonster.com/theme/accessible/flexmonster.min.css" />
To create a custom high-contrast theme, see our guide on CSS themes.
All Flexmonster’s functionality is accessible from the keyboard. Check out the keyboard navigation guide.
The WAI-ARIA framework is used to ensure compatibility with screen readers. It provides HTML attributes that describe element roles, states, and relations.
These HTML attributes are applied to all Flexmonster elements. As a result, screen readers process the component’s structure better, giving users a full understanding of what they are working with.
Here is a full list of ARIA attributes used in Flexmonster:
Flexmonster conforms to Section 508 and WCAG 2.1 accessibility standards.
Furthermore, meeting the WCAG 2.1 requirements, Flexmonster also conforms to standards that adopt WCAG (e.g., the EN 301 549 standard).