Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>ally.fix.pointerFocusChildren Example</title>
</head>
<body>
<article id="example-introduction">
  <h1><code>ally.fix.pointerFocusChildren</code> Example</h1>
  <p>There are two focusable div elements in this document, each containing two span element children layed out using FlexBox. The first div element exhibits the undesired behavior upon click, the second div element is covered by <code>ally.fix.pointerFocusChildren</code>.</p>
</article>
<div id="example-html">
  <main>
    <h2>Natural Browser Behavior</h2>
    <div tabindex="-1" class="flex">
      <span>one</span>
      <span>two</span>
    </div>
    <h2>Fixed Behavior</h2>
    <div tabindex="-1" id="fix-pointer-focus" class="flex">
      <span>one</span>
      <span>two</span>
    </div>
  </main>
</div>
<script src="https://cdn.jsdelivr.net/ally.js/1.4.1/ally.min.js"></script>
</body>
</html>
 
body :focus {
  outline: 3px solid red;
}
.flex {
  display: -ms-flexbox;
  display: flex;
  width: 300px;
}
.flex > span {
  -ms-flex: 1 1 10px;
      flex: 1 1 10px;
  display: block;
  transition:
    visibility 1s 0.5s linear,
    background-color 1s 0s ease-in-out;
}
.flex > span:hover {
  background-color: green;
}
.flex > span:active {
  background-color: blue;
}
  
 
ally.fix.pointerFocusChildren({
  context: '#fix-pointer-focus',
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x