This repository was archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.html
156 lines (125 loc) · 3.86 KB
/
demo.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>doc.js Demo</title>
<style type="text/css">
body {
padding : 15px;
font-family : sans-serif;
}
#demo {
border : 1px solid #000;
color : #ff0000;
margin : 15px;
padding : 5px;
}
#demo h2 {
color : #000;
}
.pass {
color : #00ff00;
}
.fade {
transition : opacity 0.33s ease-in-out;
-moz-transition : opacity 0.33s ease-in-out;
-webkit-transition : opacity 0.33s ease-in-out;
color : #00ff00;
}
#fadeIn {
opacity : 0.2;
}
#rotate {
-moz-transition : all 2s ease;
-webkit-transition : all 2s ease;
transition : all 2s ease;
color : #00ff00;
}
.spin {
-moz-transform : rotate(360deg);
-webkit-transform: rotate(360deg);
transform : rotate(360deg);
-moz-transform-origin: 50px 0;
-webkit-transform-origin: 50px 0;
transform-origin: 50px 0;
}
</style>
<script src="doc.js" type="text/javascript"></script>
<script>
doc.ready(function() {
// Selector tests
// ===================================================================================================
// N.B. we can set styles directly...
doc(".byClass").style.color = "#00ff00";
// ... or by adding a class
doc("#byId").classList.add("pass");
doc("[testType=byAttribute]").classList.add("pass");
doc("#byId").next().classList.add("pass");
doc("[testType=byAttribute]").previous().classList.add("pass");
doc("#byParent").parent().classList.add("pass");
// Event tests
// ===================================================================================================
doc("#documentLoaded").classList.add("pass");
doc("#click").addEventListener("click", function(){
this.classList.add("pass")
});
doc("#mouseover").addEventListener("mouseover", function(){
this.classList.add("pass")
});
// Simulate mouse events - comment these lines out if you want to try them manually.
doc("#click").dispatchEvent(getEvent("click"));
doc("#mouseover").dispatchEvent(getEvent("mouseover"));
// Animation tests
// ===================================================================================================
doc("#fadeOut").addEventListener("click", function() {
this.style.opacity = "0";
});
doc("#fadeIn").addEventListener("click", function() {
this.style.opacity = "1";
});
doc("#rotate").addEventListener("click", function() {
this.classList.toggle("spin");
});
});
// Programatically simulate an event
function getEvent(type) {
var mouseEvent = document.createEvent("MouseEvents");
mouseEvent.initMouseEvent(type, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
return mouseEvent;
}
</script>
</head>
<body>
<h1>doc.js Demo Page</h1>
This document shows you some of the features that doc.js provides. It also serves as a simple unit test - anything in green passed the test, anything in red isn't working as it should! We use dispatchEvent() to simulate mouse events such as clicking and mouse-over so we get a nice clean sheet without any manual clicking around.
<div id="demo">
<div id="selectors">
<h2>Selectors</h2>
<ul>
<li class="byClass">By class selector</li>
<li id="byId">By ID selector</li>
<li>By next sibling</li>
<li>By previous sibling</li>
<li testType="byAttribute">By Attribute</li>
<li>By parent<span id="byParent"></span></li>
</ul>
</div>
<div id="events">
<h2>Events</h2>
<ul>
<li id="documentLoaded">DOMContentLoaded</a>
<li id="click">click</a>
<li id="mouseover">mouseover</a>
</ul>
</div>
<div id="animations">
<h2>Animations</h2>
<ul>
<li class="fade" id="fadeOut">Fade out on click</li>
<li class="fade" id="fadeIn">Fade in on click</li>
<li id="rotate">Rotate on click</li>
</ul>
</div>
</div>
</body>
</html>