jquery.main.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
  2. * Licensed under the MIT License (LICENSE.txt).
  3. *
  4. * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
  5. * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
  6. * Thanks to: Seamus Leahy for adding deltaX and deltaY
  7. *
  8. * Version: 3.0.6
  9. *
  10. * Requires: 1.2.2+
  11. */
  12. ;(function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
  13. /*
  14. * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
  15. */
  16. // t: current time, b: begInnIng value, c: change In value, d: duration
  17. jQuery.easing['jswing'] = jQuery.easing['swing'];
  18. jQuery.extend( jQuery.easing,
  19. {
  20. def: 'easeOutQuad',
  21. swing: function (x, t, b, c, d) {
  22. //alert(jQuery.easing.default);
  23. return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
  24. },
  25. easeInQuad: function (x, t, b, c, d) {
  26. return c*(t/=d)*t + b;
  27. },
  28. easeOutQuad: function (x, t, b, c, d) {
  29. return -c *(t/=d)*(t-2) + b;
  30. },
  31. easeInOutQuad: function (x, t, b, c, d) {
  32. if ((t/=d/2) < 1) return c/2*t*t + b;
  33. return -c/2 * ((--t)*(t-2) - 1) + b;
  34. },
  35. easeInCubic: function (x, t, b, c, d) {
  36. return c*(t/=d)*t*t + b;
  37. },
  38. easeOutCubic: function (x, t, b, c, d) {
  39. return c*((t=t/d-1)*t*t + 1) + b;
  40. },
  41. easeInOutCubic: function (x, t, b, c, d) {
  42. if ((t/=d/2) < 1) return c/2*t*t*t + b;
  43. return c/2*((t-=2)*t*t + 2) + b;
  44. },
  45. easeInQuart: function (x, t, b, c, d) {
  46. return c*(t/=d)*t*t*t + b;
  47. },
  48. easeOutQuart: function (x, t, b, c, d) {
  49. return -c * ((t=t/d-1)*t*t*t - 1) + b;
  50. },
  51. easeInOutQuart: function (x, t, b, c, d) {
  52. if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
  53. return -c/2 * ((t-=2)*t*t*t - 2) + b;
  54. },
  55. easeInQuint: function (x, t, b, c, d) {
  56. return c*(t/=d)*t*t*t*t + b;
  57. },
  58. easeOutQuint: function (x, t, b, c, d) {
  59. return c*((t=t/d-1)*t*t*t*t + 1) + b;
  60. },
  61. easeInOutQuint: function (x, t, b, c, d) {
  62. if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
  63. return c/2*((t-=2)*t*t*t*t + 2) + b;
  64. },
  65. easeInSine: function (x, t, b, c, d) {
  66. return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
  67. },
  68. easeOutSine: function (x, t, b, c, d) {
  69. return c * Math.sin(t/d * (Math.PI/2)) + b;
  70. },
  71. easeInOutSine: function (x, t, b, c, d) {
  72. return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
  73. },
  74. easeInExpo: function (x, t, b, c, d) {
  75. return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
  76. },
  77. easeOutExpo: function (x, t, b, c, d) {
  78. return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
  79. },
  80. easeInOutExpo: function (x, t, b, c, d) {
  81. if (t==0) return b;
  82. if (t==d) return b+c;
  83. if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
  84. return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
  85. },
  86. easeInCirc: function (x, t, b, c, d) {
  87. return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
  88. },
  89. easeOutCirc: function (x, t, b, c, d) {
  90. return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
  91. },
  92. easeInOutCirc: function (x, t, b, c, d) {
  93. if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
  94. return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
  95. },
  96. easeInElastic: function (x, t, b, c, d) {
  97. var s=1.70158;var p=0;var a=c;
  98. if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
  99. if (a < Math.abs(c)) { a=c; var s=p/4; }
  100. else var s = p/(2*Math.PI) * Math.asin (c/a);
  101. return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
  102. },
  103. easeOutElastic: function (x, t, b, c, d) {
  104. var s=1.70158;var p=0;var a=c;
  105. if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
  106. if (a < Math.abs(c)) { a=c; var s=p/4; }
  107. else var s = p/(2*Math.PI) * Math.asin (c/a);
  108. return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
  109. },
  110. easeInOutElastic: function (x, t, b, c, d) {
  111. var s=1.70158;var p=0;var a=c;
  112. if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
  113. if (a < Math.abs(c)) { a=c; var s=p/4; }
  114. else var s = p/(2*Math.PI) * Math.asin (c/a);
  115. if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
  116. return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
  117. },
  118. easeInBack: function (x, t, b, c, d, s) {
  119. if (s == undefined) s = 1.70158;
  120. return c*(t/=d)*t*((s+1)*t - s) + b;
  121. },
  122. easeOutBack: function (x, t, b, c, d, s) {
  123. if (s == undefined) s = 1.70158;
  124. return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
  125. },
  126. easeInOutBack: function (x, t, b, c, d, s) {
  127. if (s == undefined) s = 1.70158;
  128. if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
  129. return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
  130. },
  131. easeInBounce: function (x, t, b, c, d) {
  132. return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
  133. },
  134. easeOutBounce: function (x, t, b, c, d) {
  135. if ((t/=d) < (1/2.75)) {
  136. return c*(7.5625*t*t) + b;
  137. } else if (t < (2/2.75)) {
  138. return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
  139. } else if (t < (2.5/2.75)) {
  140. return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
  141. } else {
  142. return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
  143. }
  144. },
  145. easeInOutBounce: function (x, t, b, c, d) {
  146. if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
  147. return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
  148. }
  149. });