-
Notifications
You must be signed in to change notification settings - Fork 35
/
callbacks.html
190 lines (181 loc) · 5.75 KB
/
callbacks.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Пример работы с объектом "$.Callbacks"</title>
<link rel="profile" href="https://gmpg.org/xfn/11"/>
<link rel="shortcut icon" href="https://anton.shevchuk.name/favicon.ico"/>
<link rel="stylesheet" href="css/styles.css"/>
<style>
article {
overflow: visible;
min-height: 480px;
position: relative;
}
#car {
display: none;
width: 100px;
height: 100px;
position: absolute;
background: url(images/car.svg) 50% 50% no-repeat;
transition: all 0.2s ease-in-out;
}
.left {
transform: rotate(0deg);
}
.up {
transform: rotate(90deg);
}
.right {
transform: rotate(180deg);
}
.down {
transform: rotate(270deg);
}
</style>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<script>
var C = $.Callbacks()
var $car
$(function () {
$car = $("#car")
C.add(function (speed) {
output('\n')
output('Speed 200px every ' + speed + ' ms: ')
})
$(document).keydown(function (e) {
if ($car.is(':hidden')) {
output("Please start the game →")
return false
}
// 37 - left
// 38 - up
// 39 - right
// 40 - down
switch (e.keyCode) {
case 13:
C.fire(400)
break
case 37:
C.add(function (speed) {
$car.queue(function () {
$(this).attr('class', 'left')
.dequeue()
})
$car.animate({ left: '-=200' }, speed, () => output('←'))
})
output('Added ←')
break
case 38:
C.add(function (speed) {
$car.queue(function () {
$(this).attr('class', 'up')
.dequeue()
}).animate({ top: '-=200' }, speed, () => output('↑'))
output('↑')
})
output('Added ↑')
break
case 39:
C.add(function (speed) {
$car.queue(function () {
$(this).attr('class', 'right')
.dequeue()
})
$car.animate({ left: '+=200' }, speed, () => output('→'))
})
output('Added →')
break
case 40:
C.add(function (speed) {
$car.queue(function () {
$(this).attr('class', 'down')
.dequeue()
})
$car.animate({ top: '+=200' }, speed, () => output('↓'))
})
output('Added ↓')
break
}
return false
})
})
</script>
</head>
<body>
<header>
<h1>Пример построение последовательных вызовов</h1>
<h2>Используем объект <code>$.Callbacks</code></h2>
<p>На практике мне ещё не приходилось использовать, поэтому пример немного надуманный - запрограммируйте
поездку машинки используя стрелки на клавиатуре, а затем запустите программу, указав скорость анимации.
</p>
<p>Чем меньше цифра, тем быстрее будет перемещаться машинка.</p>
</header>
<main id="content">
<article>
<div id="car"></div>
</article>
</main>
<footer>
© <a href="https://anton.shevchuk.name/jquery-book/">jQuery for beginners</a>
</footer>
<aside>
<nav>
<a href="when.html" title="go prev" rel="prev">Prev</a>
<a href="index.html#70" title="back to Index" rel="index">Index</a>
<a href="#" title="reload" onclick="window.location.reload();return false">Reload</a>
</nav>
<hr/>
<div>
<h4>Начните игру</h4>
<code contenteditable="true">$('#car').show()</code>
<button type="button">Start Game</button>
<h4>Используйте стрелки ←, →, ↑ и ↓ запрограммируйте машинку</h4>
<code contenteditable="true"><em>// restart $.Callbacks</em>
C = $.Callbacks()</code>
<button type="button">Run Code</button>
<h4>В добрый путь</h4>
<code contenteditable="true"><em>// run animation or press Enter</em>
C.fire(<i>400</i>)</code>
<button type="button">Run Code</button>
<h4>Под капотом</h4>
<code><em>// use arrow button: ↑</em>
C.add(function(<var>speed</var>) {
$car.animate(
{ top: <span>"-=200px"</span> },
<var>speed</var>
)
})</code>
<code><em>// use arrow button: ↓</em>
C.add(function(<var>speed</var>){
$car.animate(
{ top: <span>"+=200px"</span> },
<var>speed</var>
)
})</code>
<code><em>// use arrow button: →</em>
C.add(function(<var>speed</var>){
$car
.animate(
{ left: <span>"+=200px"</span> },
<var>speed</var>
)
})</code>
<code><em>// use arrow button: ←</em>
C.add(function(<var>speed</var>){
$car.animate(
{ left: <span>"-=200px"</span> },
<var>speed</var>
)
})</code>
</div>
</aside>
<aside id="output">
<h4>Output:</h4>
<hr/>
<code></code>
</aside>
</body>
</html>