-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.beziernav.js
386 lines (311 loc) · 11.7 KB
/
jquery.beziernav.js
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/*! jquery-bezier-navigation - Copyright 2015 Andrey <qRoC.Work@gmail.com> Savitskiy */
(function($)
{
'use strict';
// ========================================================================
function factorial(n) { return (n <= 1) ? 1 : n * factorial(n - 1); }
function Vec2(x, y)
{
this.x = x;
this.y = y;
}
function fillArray(array, val, repeat)
{
for (var i = 0; i < repeat; i++)
array.push(val);
}
// ========================================================================
/**
* @param Array[] pivot_points Массив опорных точек. В формате [x, y].
* @param double step Шаг при расчёте кривой. От 0 до 1.
*/
function Bezier(pivot_points, step)
{
this.points = [];
this.pivot_points = pivot_points;
for (var t = 0; t < 1 + step; t += step)
{
if (t > 1) t = 1;
var point = new Vec2(0, 0);
for (var i = 0; i < this.pivot_points.length; i++)
{
var b = this.getBasis(i, this.pivot_points.length - 1, t);
point.x += this.pivot_points[i][0] * b;
point.y += this.pivot_points[i][1] * b;
}
this.points.push(point);
}
}
/**
* Возвращает i-й элемент полинома Берштейна.
*
* @param i Номер вершины.
* @param n Количество вершин.
* @param t Положение кривой. От 0 до 1.
*/
Bezier.prototype.getBasis = function(i, n, t)
{
return (factorial(n) / (factorial(i) * factorial(n - i))) * Math.pow(t, i) * Math.pow(1 - t, n - i);
}
Bezier.prototype.getPoints = function()
{
return this.points;
}
Bezier.prototype.debugRender = function($obj)
{
var $point = $( "<div />" );
$point.css({
position: 'absolute',
top: 0,
left: 0,
width: '1px',
height: '1px',
backgroundColor: '#000'
});
for (var i = 0; i < this.points.length; i++)
{
var $point_tmp = $point.clone(false);
$point_tmp.css({
left: this.points[i].x,
top: this.points[i].y
});
$obj.append($point_tmp);
}
for (var i = 0; i < this.pivot_points.length; i++)
{
var $point_tmp = $point.clone(false);
$point_tmp.css({
left: this.pivot_points[i][0],
top: this.pivot_points[i][1],
width: '4px',
height: '4px',
backgroundColor: '#ff0000'
});
$obj.append($point_tmp);
}
}
// ========================================================================
function BezierNav($obj, options)
{
var settings = $.extend({
'$parent': $obj,
'bezier_points': [], // Опорные точки. В формате [x, y].
'bezier_step': 0.01, // Шаг для расчёта кривой. От 0 до 1.
'bezier_render': false, // Рендерить ли базье. Только для отладки.
'menu': [], // Элементы меню. Массив из идентификаторов.
'menu_item_correction': function($el, key){}, // Колбек для корректировки отображения элементов меню.
'menu_padding': 5, // Отступ между элементами меню. Зависит от bezier_step.
'menu_active_padding': 15, // Отступ от активного элемента меню. Зависит от bezier_step.
'menu_default_active': undefined // Активный пункт меню по умолчанию.
}, options);
//
var bezier = new Bezier(settings.bezier_points, settings.bezier_step);
if (settings.bezier_render)
bezier.debugRender(settings.$parent);
this.road_points = bezier.getPoints();
this.menu_items = prepareMenuItems(settings.menu, settings.menu_item_correction);
this.active = undefined;
this.tasks = [];
this.menu_padding = settings.menu_padding;
this.menu_active_padding = settings.menu_active_padding;
if (typeof settings.menu_default_active !== 'undefined')
this.setActiveById(settings.menu_default_active);
else
this.setActive(0);
for (var i = 0; i < this.menu_items.length; i++)
settings.$parent.append(this.menu_items[i].$el);
};
function prepareMenuItems(items, cb)
{
var $blueprint = $( "<div class='menu_item'/>" );
$blueprint.css({
position: 'absolute',
top: 0,
left: 0
});
var menu_items = [];
for (var i = 0; i < items.length; i++)
{
var $el = $blueprint.clone(false),
id = items[i];
cb($el, id);
menu_items.push({
id: id,
$el: $el,
point_n: -1
});
}
return menu_items;
}
BezierNav.prototype.menuSearchPosById = function(id)
{
for (var pos = 0; pos < this.menu_items.length; pos++)
if (this.menu_items[pos].id == id)
return pos;
throw new Error("Bad element id");
}
function setPossition(item, points, point_n)
{
if (point_n < 0 || point_n >= points.lenght)
return;
item.point_n = point_n;
var point = points[item.point_n];
item.$el.css({
left: point.x - item.$el.width() / 2,
top: point.y - item.$el.height() / 2
});
}
function moveByPointRoad(item, points, queue, toleft, _tasks)
{
_tasks.push(undefined);
var start_point_n = item.point_n;
var shift = toleft ? -1 : 1;
requestAnimationFrame(function animate()
{
setPossition(item, points, item.point_n + shift);
if (toleft && start_point_n - item.point_n === queue[0])
{
start_point_n = item.point_n;
queue.shift();
}
else if (!toleft && start_point_n + queue[0] === item.point_n)
{
start_point_n = item.point_n;
queue.shift();
}
if (queue.length)
requestAnimationFrame(animate);
else
_tasks.pop();
});
}
BezierNav.prototype.$innerSampleMove = function(pos)
{
var central_point = Math.floor(this.road_points.length / 2);
var left_point = central_point - this.menu_active_padding;
var right_point = central_point + this.menu_active_padding;
// center
setPossition(this.menu_items[pos], this.road_points, central_point);
// left
for (var i = pos - 1; i >= 0; i--)
{
setPossition(this.menu_items[i], this.road_points, left_point);
left_point -= this.menu_padding;
}
// right
for (var i = pos + 1; i < this.menu_items.length; i++)
{
setPossition(this.menu_items[i], this.road_points, right_point);
right_point += this.menu_padding;
}
}
BezierNav.prototype.$innerAnimationMove = function(pos)
{
var diff = pos - this.active,
toleft = false,
menu = this.menu_items,
active = this.active;
if (diff > 0)
toleft = true;
else
{
diff = Math.abs(diff);
menu = this.menu_items.slice().reverse();
active = this.menu_items.length - active - 1;
}
for (var i = 0; i < menu.length; i++)
{
var item = menu[i];
var queue = [];
if (i < active) // Уже в стороне направления
{
fillArray(queue, this.menu_padding, diff);
}
else if(i == active) // Смещение активного элемента.
{
fillArray(queue, this.menu_active_padding, 1); // Уходим в сторону
fillArray(queue, this.menu_padding, diff - 1); // Стандартное смещение в сторону направления
}
else if (i - diff == active) // Справа, переходит в центральное положение
{
fillArray(queue, this.menu_padding, diff - 1); // Подходим к центру
fillArray(queue, this.menu_active_padding, 1); // Ставим в центр
}
else if (i - diff < active) // Проходит через центр в сторону направления
{
fillArray(queue, this.menu_padding, i - active - 1); // Подходим к центру
fillArray(queue, this.menu_active_padding, 2); // Проходим центр
fillArray(queue, this.menu_padding, diff - (i - active) - 1); // Стандартное смещение в сторону направления
}
else // В стороне
{
fillArray(queue, this.menu_padding, diff);
}
moveByPointRoad(item, this.road_points, queue, toleft, this.tasks);
}
}
BezierNav.prototype.setActiveById = function(id)
{
this.setActive(this.menuSearchPosById(id));
}
BezierNav.prototype.setActive = (function()
{
var __first_render = true;
return function(pos)
{
if (this.tasks.length)
return;
if (typeof this.active !== 'undefined')
{
if (this.active == pos)
return;
this.menu_items[this.active].$el.removeClass("active");
}
if (__first_render)
{
this.$innerSampleMove(pos);
__first_render = false;
}
else
{
this.$innerAnimationMove(pos);
}
this.active = pos;
this.menu_items[this.active].$el.addClass("active");
}
})();
BezierNav.prototype.next = function()
{
if (this.active == this.menu_items.length - 1)
var pos = 0;
else
var pos = this.active + 1;
this.setActive(pos);
}
BezierNav.prototype.prev = function()
{
if (this.active == 0)
var pos = this.menu_items.length - 1;
else
var pos = this.active - 1;
this.setActive(pos);
}
// ========================================================================
var bezier_nav = {};
$.fn.bezierNav = function(data)
{
var $obj = this;
var id = $obj.attr('id');
if (!id)
{
id = 'bezier_nav_' + Date.now();
$obj.attr('id', id);
}
if (!bezier_nav.hasOwnProperty(id))
bezier_nav[id] = new BezierNav($obj, data);
else if (data in bezier_nav[id] && data[0] != '$')
return bezier_nav[id][data].apply(bezier_nav[id], Array.prototype.slice.call(arguments, 1));
else
$.error('Bad method name: ' + data);
};
})(jQuery);