Blame view

frontend/web/js/jquery.easing.compatibility.js 1.4 KB
eb56e5f2   Administrator   first commit
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
  jQuery.extend( jQuery.easing,
  {
  	easeIn: function (x, t, b, c, d) {
  		return jQuery.easing.easeInQuad(x, t, b, c, d);
  	},
  	easeOut: function (x, t, b, c, d) {
  		return jQuery.easing.easeOutQuad(x, t, b, c, d);
  	},
  	easeInOut: function (x, t, b, c, d) {
  		return jQuery.easing.easeInOutQuad(x, t, b, c, d);
  	},
  	expoin: function(x, t, b, c, d) {
  		return jQuery.easing.easeInExpo(x, t, b, c, d);
  	},
  	expoout: function(x, t, b, c, d) {
  		return jQuery.easing.easeOutExpo(x, t, b, c, d);
  	},
  	expoinout: function(x, t, b, c, d) {
  		return jQuery.easing.easeInOutExpo(x, t, b, c, d);
  	},
  	bouncein: function(x, t, b, c, d) {
  		return jQuery.easing.easeInBounce(x, t, b, c, d);
  	},
  	bounceout: function(x, t, b, c, d) {
  		return jQuery.easing.easeOutBounce(x, t, b, c, d);
  	},
  	bounceinout: function(x, t, b, c, d) {
  		return jQuery.easing.easeInOutBounce(x, t, b, c, d);
  	},
  	elasin: function(x, t, b, c, d) {
  		return jQuery.easing.easeInElastic(x, t, b, c, d);
  	},
  	elasout: function(x, t, b, c, d) {
  		return jQuery.easing.easeOutElastic(x, t, b, c, d);
  	},
  	elasinout: function(x, t, b, c, d) {
  		return jQuery.easing.easeInOutElastic(x, t, b, c, d);
  	},
  	backin: function(x, t, b, c, d) {
  		return jQuery.easing.easeInBack(x, t, b, c, d);
  	},
  	backout: function(x, t, b, c, d) {
  		return jQuery.easing.easeOutBack(x, t, b, c, d);
  	},
  	backinout: function(x, t, b, c, d) {
  		return jQuery.easing.easeInOutBack(x, t, b, c, d);
  	}
  });