forked from impressivewebs/QuestionMark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (66 loc) · 2.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<!--[if lte IE 8]> <html class="ie8"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>QuestionMark.js</title>
<link rel="stylesheet" href="css/question.mark.css?v=1.0.5">
<style>
.demo {
word-wrap: break-word;
text-align: center;
font-family: Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
.demo h1 {
color: #aaa;
font-size: 3em;
}
.demo p {
font-family: Arial, sans-serif;
max-width: 880px;
color: #555;
margin: 0 auto 30px auto;
font-size: 30px;
}
.demo p:last-child {
font-size: 20px;
}
.demo a {
color: firebrick;
}
.demo a:hover {
color: blue;
}
.demo code {
background: #888;
color: white;
padding: 3px 8px;
}
</style>
</head>
<body>
<div class="demo">
<h1>QuestionMark.js</h1>
<p>A lightweight, cross-browser, modal window that displays shortcut keys for your app, <a href="https://plus.google.com/u/0/118100898483063383963/posts/V12mRNmsiWg">similar to Twitter, Gmail, GitHub, etc.</a></p>
<p>This is an example page.</p>
<p>Press the <code>?</code> key to see the modal.</p>
<p>More info:<br><a href="http://impressivewebs.github.io/QuestionMark.js/">http://impressivewebs.github.io/QuestionMark.js/</a> and <a href="http://www.impressivewebs.com/questionmark-js-shortcut-keys-displayed/">a blog post</a>.</p>
<p>© <a href="https://twitter.com/ImpressiveWebs">Louis Lazaris</a></p>
</div><!-- .demo -->
<!-- attachevent.js is for IE8 -->
<!--[if lte IE 8]><script src="js/attachevent.js"></script><![endif]-->
<script src="js/question.mark.js?v=1.0.3"></script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1965499-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>