forked from xqsapper/slider.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slider.coffee
481 lines (417 loc) · 13.8 KB
/
slider.coffee
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
# [Slider.js](http://demo.greweb.fr/slider) by @greweb
###!
Copyright 2011 Gaetan Renaudeau
http://greweb.fr/slider
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
###
# Util function : modulo for negative values
mod = (X,Y) -> X-Y*Math.floor(X/Y)
# RequestAnimationFrame polyfill : https://gist.github.com/997619
requestAnimationFrame = `function(a,b){while(a--&&!(b=window["oR0msR0mozR0webkitR0r".split(0)[a]+"equestAnimationFrame"]));return b||function(a){setTimeout(a,15)}}(5)`
# return the current millisecond timestamp
currentTime = `function(){return new Date().getTime()}`
# Slider template
# ---------------
tmplSlider = (o) ->
slider = $("""
<div class="slider">
<div class="loader"><span class="spinner"></span> <span class="percent">0</span>%</div>
<div class="slide-images"></div>
<div class="options">
<a class="prevSlide" href="javascript:;">prev</a>
<span class="slide-pager"></span>
<a class="nextSlide" href="javascript:;">next</a>
</div>
</div>
""")
slider.find('.slide-images').append(
$.map(o.slides, (slide) -> $('<div class="slide-image">'+
(if slide.link then '<a href="'+slide.link+'" target="_blank">' else '')+
'<img src="'+slide.src+'">'+
(if slide.name then '<span class="caption">'+slide.name+'</span>' else '')+
(if slide.link then '</a>' else '')+
'</div>')[0]
)
)
slider.find('.slide-pager').append $.map(o.slides, (slide, i) ->
$('<a href="javascript:;">' + (i + 1) + '</a>')[0]
)
slider
tmplSliderWithCanvas = (o) ->
node = tmplSlider o
node.find('div.slide-images').append('<canvas class="slide-images" />')
node
# SliderUtils
# -----------
SliderUtils =
extractImageData: (self, from, to) ->
{width, height} = self.canvas[0]
self.clean()
self.drawImage self.images[from]
fromData = self.ctx.getImageData 0, 0, width, height
self.clean()
self.drawImage self.images[to]
toData = self.ctx.getImageData 0, 0, width, height
output = self.ctx.createImageData width, height
return fromData: fromData, toData: toData, output: output
clippedTransition: ( clipFunction ) ->
(self, from, to, progress) ->
{width, height} = self.canvas[0]
ctx = self.ctx
self.drawImage self.images[from]
ctx.save()
ctx.beginPath()
clipFunction ctx, width, height, progress
ctx.clip()
self.drawImage self.images[to]
ctx.restore()
# SliderTransitionFunctions
# ------------------------
SliderTransitionFunctions =
# A clock load effect
clock:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
ctx.moveTo w/2, h/2
ctx.arc w/2, h/2, Math.max(w, h), 0, Math.PI*2*p, false
# A circle open effect
circle:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
ctx.arc w/2, h/2, 0.6*p*Math.max(w, h), 0, Math.PI*2, false
# A horizontal open effect
diamond:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
w2=w/2
h2=h/2
dh=p*h
dw=p*w
ctx.moveTo w2, h2-dh
ctx.lineTo w2+dw, h2
ctx.lineTo w2, h2+dh
ctx.lineTo w2-dw, h2
# A vertical open effect
verticalOpen:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
nbSpike=8
spikeh=h/(2*nbSpike) # the height of a demi-spike (triangle)
spikew=spikeh
pw=p*w/2
xl=w/2-pw
xr=w/2+pw
spikel=xl-spikew
spiker=xr+spikew
ctx.moveTo xl, 0
for hi in [0..nbSpike]
h1=(2*hi)*spikeh
h2=h1+spikeh
ctx.lineTo spikel, h1
ctx.lineTo xl, h2
ctx.lineTo spiker, h
for hi in [nbSpike..0]
h1=(2*hi)*spikeh
h2=h1-spikeh
ctx.lineTo xr, h1
ctx.lineTo spiker, h2
# A horizontal open effect
horizontalOpen:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
ctx.rect 0, (1-p)*h/2, w, h*p
# A sundblind open effect
horizontalSunblind:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
p = 1-(1-p)*(1-p) #non linear progress
blinds = 6
blindHeight = h/blinds
for blind in [0..blinds]
ctx.rect 0, blindHeight*blind, w, blindHeight*p
# A vertical sundblind open effect
verticalSunblind:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
p = 1-(1-p)*(1-p)
blinds = 10
blindWidth = w/blinds
for blind in [0..blinds]
prog = Math.max(0, Math.min( 2*p-(blind+1)/blinds, 1))
ctx.rect blindWidth*blind, 0, blindWidth*prog, h
# circles open effect
circles:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
circlesY = 6
circlesX = Math.floor circlesY*w/h
circleW = w/circlesX
circleH = h/circlesY
maxWH = Math.max(w, h)
maxRad = 0.7*Math.max(circleW, circleH)
for x in [0..circlesX]
for y in [0..circlesY]
cx = (x+0.5)*circleW
cy = (y+0.5)*circleH
r = Math.max(0, Math.min(2*p-cx/w, 1)) * maxRad
ctx.moveTo cx, cy
ctx.arc cx, cy, r, 0, Math.PI*2, false
# A square sundblind open effect
squares:
render: SliderUtils.clippedTransition (ctx, w, h, p) ->
p = 1-(1-p)*(1-p) #non linear progress
blindsY = 5
blindsX = Math.floor blindsY*w/h
blindWidth = w/blindsX
blindHeight = h/blindsY
for x in [0..blindsX]
for y in [0..blindsY]
sx = blindWidth*x
sy = blindHeight*y
prog = Math.max(0, Math.min(3*p-sx/w-sy/h, 1))
rw = blindWidth*prog
rh = blindHeight*prog
ctx.rect sx-rw/2, sy-rh/2, rw, rh
# A blured fade left effect
fadeLeft:
init: (self, from, to) ->
data = SliderUtils.extractImageData(self, from, to)
data.randomTrait = []
h = self.canvas[0].height
for y in [0..h]
data.randomTrait[y] = Math.random()
data
render: (self, from, to, progress, data) ->
blur = 150
{width, height} = self.canvas[0]
ctx = self.ctx
fd = data.fromData.data
td = data.toData.data
out = data.output.data
randomTrait = data.randomTrait
`(function(){
var wpdb = width*progress/blur;
for (var x = 0; x < width; ++x) {
var xdb = x/blur;
for (var y = 0; y < height; ++y) {
var b = (y*width + x)*4
var p1 = Math.min(Math.max((xdb-wpdb*(1+randomTrait[y]/10)), 0), 1)
var p2 = 1-p1
for (var c = 0; c < 3; ++c) {
var i = b + c;
out[i] = p1 * (fd[i] ) + p2 * (td[i] )
}
out[b + 3] = 255;
}
}
}())`
self.ctx.putImageData data.output, 0, 0
# Slider - a lightweight slider
# -----------------------------
# Constructor : init container node and current slide number
class Slider
constructor: (container) -> @container = $(container)
current: 0
lastHumanNav: 0
duration: 4000
w: '640px'
h: '430px'
theme: 'theme-dark'
tmpl: tmplSlider
# Util function : return the circular value of num
circular: (num) -> mod num, @slides.size()
# Go to slide number `num` : update both DOM and this.current
slide: (num) ->
# num must be between 0 and nbslides-1
if @slides && @pages
num = Math.max(0, Math.min(num, @slides.size()-1))
# Move current class in **slides**
@slides.eq(@current).removeClass "current"
@slides.eq(num).addClass "current"
# Move current class in **pages**
@pages.eq(@current).removeClass "current"
@pages.eq(num).addClass "current"
@current = num
this
# Go to circular next slide (will call `slide`)
next: -> @slide @circular(@current+1)
# Go to circular previous slide (will call `slide`)
prev: -> @slide @circular(@current-1)
# Change the duration between each slide
setDuration: (@duration) ->
this
# Change the slider transition CSS class
setTransition: (transition) ->
if @node
@node.removeClass(@transition) if @transition
@node.addClass(transition) if transition
@transition = transition
this
# Change the slider theme CSS class
setTheme: (theme = "theme-dark") ->
if @node
@node.removeClass(@theme) if @theme
@node.addClass(theme) if theme
@theme = theme
this
# set slider size
setSize: (@w, @h) ->
if @node
@node.width w
@node.find(".slide-image").width w
@node.find(".slide-images").height h
this
# Fetch photos with a JSON providing its `url`.
# If `options` is defined, passing it in request params.
# If `transformer` is defined, using it to transform the json
# to a compatible json to pass to `Slider.setPhotos`.
fetchJson: (url, options, transformer) ->
params = $.extend({}, options)
transformer ?= (json) -> json
$.getJSON url, params, (json) => @setPhotos transformer(json)
this
# Sync slider data to DOM
_sync: ->
@setTransition @transition
@setTheme @theme
@setSize @w, @h
@slide @current
# `slides` : format: array of { src, name, link (optional) }
setPhotos: (@photos) ->
# Templating and appending to DOM
@node = @tmpl(slides: photos).addClass("loading")
@container.empty().append @node
@_sync()
# Loading all images before showing the slider
nbLoad = 0
imgs = @node.find(".slide-image img").bind("load", =>
total = imgs.size()
if ++nbLoad == total
@node.removeClass "loading"
@start()
# Update loader progression (in percent)
@node.find(".loader .percent").text Math.floor(100 * nbLoad / total)
)
@node.find(".loader").text "No photo" if imgs.size() == 0
this
# Start the slider
start: ->
@slides = @node.find(".slide-image")
@pages = @node.find(".slide-pager a")
@_sync()
@_bind()
this
stop: ->
@_unbind()
this
# Bind slider DOM events for navigation
_bind: ->
@_unbind()
@node.find(".prevSlide").click => @prev()
@node.find(".nextSlide").click => @next()
self = this
if @node
@node.find(".slide-pager a").each (i) ->
$(this).click -> self.slide i
now = -> currentTime()
@node.find(".options a").click => @lastHumanNav = now()
if not @timeout
loop_ = =>
@next() if now() - @lastHumanNav > 2000
@timeout = setTimeout(loop_, @duration)
@timeout = setTimeout(loop_, @duration)
this
_unbind: ->
if @node
@node.find(".prevSlide, .nextSlide, .slide-pager a, .options a").unbind 'click'
if @timeout
clearTimeout @timeout
@timeout = null
# SliderWithCanvas
# ---------------
# Let's support canvas transitions
class SliderWithCanvas extends Slider
transitionFunction: SliderTransitionFunctions.clock
transitionDuration: 1500
tmpl: tmplSliderWithCanvas
# also synchronize the renderMode
_sync: () ->
renderMode = @renderMode
super
@setRenderMode(renderMode)
# Init some variables related to canvas
start: () ->
@notCanvas = @node.find '.slide-images:not(canvas) img'
@canvas = @node.find 'canvas.slide-images'
@ctx = @canvas[0].getContext '2d' if @canvas[0] and @canvas[0].getContext
@images = $.map(@photos, ((photo) =>
img = new Image()
img.src = photo.src
img
)) if @photos
super
# The `setSize` method should update the canvas size
setSize: (w, h) ->
super w, h
@canvas.attr("height", h).attr("width", w) if @canvas
this
# set the render mode of the slider ( canvas | css )
setRenderMode: (@renderMode) ->
if @ctx
if @renderMode is 'canvas'
@drawImage @images[@current]
@notCanvas.hide()
@canvas.show()
else
@canvas.hide()
@notCanvas.show()
this
setTransition: (transition) ->
@setRenderMode 'css'
super transition
this
# Change the slider transition function (for the canvas animation)
setTransitionFunction: (@transitionFunction) ->
@setRenderMode 'canvas'
this
# Change the slider transition duration (means the time of the transition)
setTransitionDuration: (@transitionDuration) ->
@setRenderMode 'canvas'
this
# Overriding `slide` to support the canvas rendering
slide: (num) ->
@fromSlide = @current
@toSlide = num
@transitionStart = currentTime()
if @ctx and @renderMode is 'canvas'
@startRender()
super num
# clean the canvas
clean: -> @ctx.clearRect 0, 0, @canvas[0].width, @canvas[0].height
# draw an image on the all canvas with the correct ratio
drawImage: (img) ->
{width, height} = @canvas[0]
@ctx.drawImage img, 0, 0, width, width*img.height/img.width
# `_renderId` help to make sure once transition is running
_renderId: 0
# init render loop
startRender: ->
if @transitionFunction.init
@tfdata = @transitionFunction.init this, @fromSlide, @toSlide
@render(++@_renderId, @transitionFunction)
# render loop
render: (id, transitionFunction) ->
now = currentTime()
if id==@_renderId and now >= @transitionStart
progress = Math.min(1, (now - @transitionStart) / @transitionDuration)
if progress == 1
@clean()
@drawImage @images[@toSlide]
else
transitionFunction.render this, @fromSlide, @toSlide, progress, @tfdata
requestAnimationFrame (=>@render(id, transitionFunction)), @canvas[0]
# Exporting global variables
# --------------------------
window.Slider = SliderWithCanvas
window.SliderTransitionFunctions = SliderTransitionFunctions
window.SliderUtils = SliderUtils