# o-hoverable **Repository Path**: mirrors_Financial-Times/o-hoverable ## Basic Information - **Project Name**: o-hoverable - **Description**: This is deprecated, we recommend the native hover media query instead. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Origami hover effects [![Build Status](https://circleci.com/gh/Financial-Times/o-hoverable.png?style=shield&circle-token=b0af656f0c61d4711aaf95feff0fda15e76cf32e)](https://circleci.com/gh/Financial-Times/o-hoverable) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](#licence) _Deprecated. We recommend the [hover](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/hover) or [any-hover](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/any-hover) media query instead._ Helper to activate hover states only on devices that support them, preventing unintended hover effects from happening on touch devices. - [Usage](#usage) - [Why o-hoverable](#why-o-hoverable) - [Sass](#sass) - [JavaScript](#javascript) - [Configuring the class](#configuring-the-class) - [Disabling o-hoverable](#disabling-o-hoverable) - [Contact](#contact) - [Licence](#licence) ## Usage Add this class to the document to enable hover effects: ```html ``` ### Why o-hoverable? It's common for interactive elements on web pages to have hover effects, either via JavaScript `mouse*` events, or via CSS `:hover` pseudoclasses. However, while some users will be interacting with your web page using a mouse, others may be using a touch screen. Since touch screens typically don't have a 'hover' capability, hover effects are usually undesirable. In fact, some touch devices may have 'emulated hover', where the first touch activates a hover effect and the second is treated as a click. This is a way for the browser to provide a way to use pages that 'require' hover (e.g. to select a flyout menu option) but this is also usually undesirable if you design your site sensibly. This module provides for all Origami hover effects to be turned on and off, and provides a JavaScript utility to do so intelligently based on the input devices available to the user. ### Sass Component developers *must* prefix `:hover` states with `$o-hoverable-if-hover-enabled`, allowing hover effects to be configured by this module: ```scss @import 'o-hoverable/main'; #{$o-hoverable-if-hover-enabled} .o-mymodule-button:hover { // Paint it black when hover is supported background: black; } ``` Compiles to: ```css .o-hoverable-on .o-mymodule-button:hover { background: black; } ``` ### JavaScript Component developers *must* load hover effects conditionnally: ```javascript function showMyMenuOnHover() { if (!require('o-hoverable').isHoverEnabled()) { // Hover isn't supported: don't do anything return; } // Hover is supported: show a menu } ``` ### Configuring the class If you want to change the class used to trigger hover effects, you can do so by redefining the `$o-hoverable-if-hover-enabled` variable before importing this module's Sass. ```scss $o-hoverable-if-hover-enabled: '.do-that-hover-thang'; ``` And calling `setClassName` on the JavaScript module: ```javascript require('o-hoverable').setClassName('do-that-hover-thang'); ``` ### Disabling o-hoverable Restore hover effects on all devices (even touch devices): ```scss $o-hoverable-if-hover-enabled: ''; @import 'o-hoverable/main'; #{$o-hoverable-if-hover-enabled} .o-mymodule-button:hover { // Paint it black background: black; } ``` Compiles to: ```scss .o-mymodule-button:hover { background: black; } ``` --- ## Contact If you have any questions or comments about this component, or need help using it, please either [raise an issue](https://github.com/Financial-Times/o-hoverable/issues), visit [#ft-origami](https://financialtimes.slack.com/messages/ft-origami/) or email [Origami Support](mailto:origami-support@ft.com). ---- ## Licence This software is published by the Financial Times under the [MIT licence](http://opensource.org/licenses/MIT).