Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created practices/examples folder, and added link design pattern example... #7

Merged
merged 1 commit into from
Nov 6, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions practices/examples/link-design-pattern/css/basic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
html, body
{
font: normal 95% Helvetica, Verdana, Arial, sans-serif;
color: #000;
padding: 0;
margin: 0;
}

body
{
padding: 0.5em 0.7em;
margin: 0 4em 0 1em;
max-width: 55em;
background: #fff;
}

h1, h2, h3
{
font: normal 170%/100% Garamond, "Times New Roman", serif;
margin-bottom: 0;
color: 630;
background: transparent;
}

h1
{
padding: 0.2em;
}

h2
{
font: normal 150%/100% Garamond, "Times New Roman", serif;
}

h3 {
font: normal 140%/120% Garamond, "Times New Roman", serif;
}

a
{
color: #009;
background: transparent;
}

a:visited
{
color:#360;
background:transparent;
}

a:hover, a:focus, a:active
{
color:#000;
background-color: #fc0;
}

img
{
border: none;
}

14 changes: 14 additions & 0 deletions practices/examples/link-design-pattern/css/links.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[role="link"]
{
color: #009;
background: transparent;
text-decoration: underline;
}

[role="link"]:hover, [role="link"]:focus, [role="link"]:active
{
color:#000;
background-color: #fc0;
cursor: pointer;
}

17 changes: 17 additions & 0 deletions practices/examples/link-design-pattern/js/links.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
function fetchResource(event)
{
window.location.href = 'http://w3.org/';
}

// Check if the enter (key code 13) has been pressed
function handleLinkKeyUp(event)
{
event = event || window.event;

if (event.keyCode === 13)
{
fetchResource(event);
}
}

window.onload = init;
37 changes: 37 additions & 0 deletions practices/examples/link-design-pattern/links.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>

<html lang="en">

<head>
<title>Link design pattern</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/basic.css">
<link rel="stylesheet" type="text/css" href="css/links.css">
<script src="js/links.js"></script>
</head>

<body>
<h1>Link design pattern</h1>

<p>This link is based on the <a href="http://www.w3.org/TR/wai-aria-practices/#link">link design pattern</a> in the <a href="http://www.w3.org/TR/wai-aria-practices/">WAI-ARIA Authoring Practices Guide</a>.</p>

<h2>Example link</h2>

<p>
<span id="link" tabindex="0" role="link" onclick="fetchResource(event);" onkeyup="handleLinkKeyUp(event);">W3C website</span>
</p>

<h2>Example link code</h2>

<div>
<pre><code>
&lt;span id="link" tabindex="0" role="link" onclick="fetchResource(event);" onkeyup="handleLinkKeyUp(event);"&gt;W3C website&lt;/span&gt;
</code></pre>
</div>

<h2>Example link notes</h2>

<p>Should we include notes?</p>

</body>
</html>