jquery.nicescroll.js 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798
  1. /* jquery.nicescroll
  2. -- version 3.6.8
  3. -- copyright 2016-02-29 InuYaksa*2016
  4. -- licensed under the MIT
  5. --
  6. -- http://nicescroll.areaaperta.com/
  7. -- https://github.com/inuyaksa/jquery.nicescroll
  8. --
  9. */
  10. (function(factory) {
  11. if (typeof define === 'function' && define.amd) {
  12. // AMD. Register as anonymous module.
  13. define(['jquery'], factory);
  14. } else if (typeof exports === 'object') {
  15. // Node/CommonJS.
  16. module.exports = factory(require('jquery'));
  17. } else {
  18. // Browser globals.
  19. factory(jQuery);
  20. }
  21. }(function(jQuery) {
  22. "use strict";
  23. // globals
  24. var domfocus = false;
  25. var mousefocus = false;
  26. var tabindexcounter = 0;
  27. var ascrailcounter = 2000;
  28. var globalmaxzindex = 0;
  29. var $ = jQuery; // sandbox
  30. // http://stackoverflow.com/questions/2161159/get-script-path
  31. function getScriptPath() {
  32. var scripts = document.getElementsByTagName('script');
  33. var path = scripts.length ? scripts[scripts.length - 1].src.split('?')[0] : '';
  34. return (path.split('/').length > 0) ? path.split('/').slice(0, -1).join('/') + '/' : '';
  35. }
  36. var vendors = ['webkit','ms','moz','o'];
  37. var setAnimationFrame = window.requestAnimationFrame || false;
  38. var clearAnimationFrame = window.cancelAnimationFrame || false;
  39. if (!setAnimationFrame) { // legacy detection
  40. for (var vx in vendors) {
  41. var v = vendors[vx];
  42. setAnimationFrame = window[v + 'RequestAnimationFrame'];
  43. if (setAnimationFrame) {
  44. clearAnimationFrame = window[v + 'CancelAnimationFrame'] || window[v + 'CancelRequestAnimationFrame'];
  45. break;
  46. }
  47. }
  48. }
  49. var ClsMutationObserver = window.MutationObserver || window.WebKitMutationObserver || false;
  50. var _globaloptions = {
  51. zindex: "auto",
  52. cursoropacitymin: 0,
  53. cursoropacitymax: 1,
  54. cursorcolor: "#424242",
  55. cursorwidth: "6px",
  56. cursorborder: "1px solid #fff",
  57. cursorborderradius: "5px",
  58. scrollspeed: 60,
  59. mousescrollstep: 8 * 3,
  60. touchbehavior: false,
  61. hwacceleration: true,
  62. usetransition: true,
  63. boxzoom: false,
  64. dblclickzoom: true,
  65. gesturezoom: true,
  66. grabcursorenabled: true,
  67. autohidemode: true,
  68. background: "",
  69. iframeautoresize: true,
  70. cursorminheight: 32,
  71. preservenativescrolling: true,
  72. railoffset: false,
  73. railhoffset: false,
  74. bouncescroll: true,
  75. spacebarenabled: true,
  76. railpadding: {
  77. top: 0,
  78. right: 0,
  79. left: 0,
  80. bottom: 0
  81. },
  82. disableoutline: true,
  83. horizrailenabled: true,
  84. railalign: "right",
  85. railvalign: "bottom",
  86. enabletranslate3d: true,
  87. enablemousewheel: true,
  88. enablekeyboard: true,
  89. smoothscroll: true,
  90. sensitiverail: true,
  91. enablemouselockapi: true,
  92. // cursormaxheight:false,
  93. cursorfixedheight: false,
  94. directionlockdeadzone: 6,
  95. hidecursordelay: 400,
  96. nativeparentscrolling: true,
  97. enablescrollonselection: true,
  98. overflowx: true,
  99. overflowy: true,
  100. cursordragspeed: 0.3,
  101. rtlmode: "auto",
  102. cursordragontouch: false,
  103. oneaxismousemode: "auto",
  104. scriptpath: getScriptPath(),
  105. preventmultitouchscrolling: true,
  106. disablemutationobserver:false
  107. };
  108. var browserdetected = false;
  109. var getBrowserDetection = function() {
  110. if (browserdetected) return browserdetected;
  111. var _el = document.createElement('DIV'),
  112. _style = _el.style,
  113. _agent = navigator.userAgent,
  114. _platform = navigator.platform,
  115. d = {};
  116. d.haspointerlock = "pointerLockElement" in document || "webkitPointerLockElement" in document || "mozPointerLockElement" in document;
  117. d.isopera = ("opera" in window); // 12-
  118. d.isopera12 = (d.isopera && ("getUserMedia" in navigator));
  119. d.isoperamini = (Object.prototype.toString.call(window.operamini) === "[object OperaMini]");
  120. d.isie = (("all" in document) && ("attachEvent" in _el) && !d.isopera); //IE10-
  121. d.isieold = (d.isie && !("msInterpolationMode" in _style)); // IE6 and older
  122. d.isie7 = d.isie && !d.isieold && (!("documentMode" in document) || (document.documentMode == 7));
  123. d.isie8 = d.isie && ("documentMode" in document) && (document.documentMode == 8);
  124. d.isie9 = d.isie && ("performance" in window) && (document.documentMode == 9);
  125. d.isie10 = d.isie && ("performance" in window) && (document.documentMode == 10);
  126. d.isie11 = ("msRequestFullscreen" in _el) && (document.documentMode >= 11); // IE11+
  127. d.isieedge12 = (navigator.userAgent.match(/Edge\/12\./)); // IE Edge 12
  128. d.isieedge = ("msOverflowStyle" in _el); // IE Edge
  129. d.ismodernie = d.isie11 || d.isieedge;
  130. d.isie9mobile = /iemobile.9/i.test(_agent); //wp 7.1 mango
  131. if (d.isie9mobile) d.isie9 = false;
  132. d.isie7mobile = (!d.isie9mobile && d.isie7) && /iemobile/i.test(_agent); //wp 7.0
  133. d.ismozilla = ("MozAppearance" in _style);
  134. d.iswebkit = ("WebkitAppearance" in _style);
  135. d.ischrome = ("chrome" in window);
  136. d.ischrome38 = (d.ischrome && ("touchAction" in _style)); // behavior changed in touch emulation
  137. d.ischrome22 = (!d.ischrome38)&&(d.ischrome && d.haspointerlock);
  138. d.ischrome26 = (!d.ischrome38)&&(d.ischrome && ("transition" in _style)); // issue with transform detection (maintain prefix)
  139. d.cantouch = ("ontouchstart" in document.documentElement) || ("ontouchstart" in window); // with detection for Chrome Touch Emulation
  140. d.hasw3ctouch = (window.PointerEvent || false) && ((navigator.MaxTouchPoints > 0)||(navigator.msMaxTouchPoints > 0)); //IE11 pointer events, following W3C Pointer Events spec
  141. d.hasmstouch = (!d.hasw3ctouch)&&(window.MSPointerEvent || false); // IE10 pointer events
  142. d.ismac = /^mac$/i.test(_platform);
  143. d.isios = (d.cantouch && /iphone|ipad|ipod/i.test(_platform));
  144. d.isios4 = ((d.isios) && !("seal" in Object));
  145. d.isios7 = ((d.isios)&&("webkitHidden" in document)); //iOS 7+
  146. d.isios8 = ((d.isios)&&("hidden" in document)); //iOS 8+
  147. d.isandroid = (/android/i.test(_agent));
  148. d.haseventlistener = ("addEventListener" in _el);
  149. d.trstyle = false;
  150. d.hastransform = false;
  151. d.hastranslate3d = false;
  152. d.transitionstyle = false;
  153. d.hastransition = false;
  154. d.transitionend = false;
  155. var a;
  156. var check = ['transform', 'msTransform', 'webkitTransform', 'MozTransform', 'OTransform'];
  157. for (a = 0; a < check.length; a++) {
  158. if (_style[check[a]] !== undefined) {
  159. d.trstyle = check[a];
  160. break;
  161. }
  162. }
  163. d.hastransform = (!!d.trstyle);
  164. if (d.hastransform) {
  165. _style[d.trstyle] = "translate3d(1px,2px,3px)";
  166. d.hastranslate3d = /translate3d/.test(_style[d.trstyle]);
  167. }
  168. d.transitionstyle = false;
  169. d.prefixstyle = '';
  170. d.transitionend = false;
  171. check = ['transition', 'webkitTransition', 'msTransition', 'MozTransition', 'OTransition', 'OTransition', 'KhtmlTransition'];
  172. var prefix = ['', '-webkit-', '-ms-', '-moz-', '-o-', '-o', '-khtml-'];
  173. var evs = ['transitionend', 'webkitTransitionEnd', 'msTransitionEnd', 'transitionend', 'otransitionend', 'oTransitionEnd', 'KhtmlTransitionEnd'];
  174. for (a = 0; a < check.length; a++) {
  175. if (check[a] in _style) {
  176. d.transitionstyle = check[a];
  177. d.prefixstyle = prefix[a];
  178. d.transitionend = evs[a];
  179. break;
  180. }
  181. }
  182. if (d.ischrome26) { // always use prefix
  183. d.prefixstyle = prefix[1];
  184. }
  185. d.hastransition = (d.transitionstyle);
  186. function detectCursorGrab() {
  187. var lst = ['grab','-webkit-grab', '-moz-grab'];
  188. if ((d.ischrome && !d.ischrome38) || d.isie) lst = []; // force setting for IE returns false positive and chrome cursor bug
  189. for (var a = 0; a < lst.length; a++) {
  190. var p = lst[a];
  191. _style.cursor = p;
  192. if (_style.cursor == p) return p;
  193. }
  194. return 'url(//patriciaportfolio.googlecode.com/files/openhand.cur),n-resize'; // thank you google for custom cursor!
  195. }
  196. d.cursorgrabvalue = detectCursorGrab();
  197. d.hasmousecapture = ("setCapture" in _el);
  198. d.hasMutationObserver = (ClsMutationObserver !== false);
  199. _el = null; //memory released
  200. browserdetected = d;
  201. return d;
  202. };
  203. var NiceScrollClass = function(myopt, me) {
  204. var self = this;
  205. this.version = '3.6.8';
  206. this.name = 'nicescroll';
  207. this.me = me;
  208. this.opt = {
  209. doc: $("body"),
  210. win: false
  211. };
  212. $.extend(this.opt, _globaloptions); // clone opts
  213. // Options for internal use
  214. this.opt.snapbackspeed = 80;
  215. if (myopt || false) {
  216. for (var a in self.opt) {
  217. if (myopt[a] !== undefined) self.opt[a] = myopt[a];
  218. }
  219. }
  220. if (self.opt.disablemutationobserver) ClsMutationObserver = false;
  221. this.doc = self.opt.doc;
  222. this.iddoc = (this.doc && this.doc[0]) ? this.doc[0].id || '' : '';
  223. this.ispage = /^BODY|HTML/.test((self.opt.win) ? self.opt.win[0].nodeName : this.doc[0].nodeName);
  224. this.haswrapper = (self.opt.win !== false);
  225. this.win = self.opt.win || (this.ispage ? $(window) : this.doc);
  226. this.docscroll = (this.ispage && !this.haswrapper) ? $(window) : this.win;
  227. this.body = $("body");
  228. this.viewport = false;
  229. this.isfixed = false;
  230. this.iframe = false;
  231. this.isiframe = ((this.doc[0].nodeName == 'IFRAME') && (this.win[0].nodeName == 'IFRAME'));
  232. this.istextarea = (this.win[0].nodeName == 'TEXTAREA');
  233. this.forcescreen = false; //force to use screen position on events
  234. this.canshowonmouseevent = (self.opt.autohidemode != "scroll");
  235. // Events jump table
  236. this.onmousedown = false;
  237. this.onmouseup = false;
  238. this.onmousemove = false;
  239. this.onmousewheel = false;
  240. this.onkeypress = false;
  241. this.ongesturezoom = false;
  242. this.onclick = false;
  243. // Nicescroll custom events
  244. this.onscrollstart = false;
  245. this.onscrollend = false;
  246. this.onscrollcancel = false;
  247. this.onzoomin = false;
  248. this.onzoomout = false;
  249. // Let's start!
  250. this.view = false;
  251. this.page = false;
  252. this.scroll = {
  253. x: 0,
  254. y: 0
  255. };
  256. this.scrollratio = {
  257. x: 0,
  258. y: 0
  259. };
  260. this.cursorheight = 20;
  261. this.scrollvaluemax = 0;
  262. // http://dev.w3.org/csswg/css-writing-modes-3/#logical-to-physical
  263. // http://dev.w3.org/csswg/css-writing-modes-3/#svg-writing-mode
  264. if (this.opt.rtlmode == "auto") {
  265. var target = this.win[0] == window ? this.body : this.win;
  266. var writingMode = target.css("writing-mode") || target.css("-webkit-writing-mode") || target.css("-ms-writing-mode") || target.css("-moz-writing-mode");
  267. if (writingMode == "horizontal-tb" || writingMode == "lr-tb" || writingMode == "") {
  268. this.isrtlmode = (target.css("direction") == "rtl");
  269. this.isvertical = false;
  270. } else {
  271. this.isrtlmode = (writingMode == "vertical-rl" || writingMode == "tb" || writingMode == "tb-rl" || writingMode == "rl-tb");
  272. this.isvertical = (writingMode == "vertical-rl" || writingMode == "tb" || writingMode == "tb-rl");
  273. }
  274. } else {
  275. this.isrtlmode = (this.opt.rtlmode === true);
  276. this.isvertical = false;
  277. }
  278. // this.checkrtlmode = false;
  279. this.scrollrunning = false;
  280. this.scrollmom = false;
  281. this.observer = false; // observer div changes
  282. this.observerremover = false; // observer on parent for remove detection
  283. this.observerbody = false; // observer on body for position change
  284. do {
  285. this.id = "ascrail" + (ascrailcounter++);
  286. } while (document.getElementById(this.id));
  287. this.rail = false;
  288. this.cursor = false;
  289. this.cursorfreezed = false;
  290. this.selectiondrag = false;
  291. this.zoom = false;
  292. this.zoomactive = false;
  293. this.hasfocus = false;
  294. this.hasmousefocus = false;
  295. this.visibility = true;
  296. this.railslocked = false; // locked by resize
  297. this.locked = false; // prevent lost of locked status sets by user
  298. this.hidden = false; // rails always hidden
  299. this.cursoractive = true; // user can interact with cursors
  300. this.wheelprevented = false; //prevent mousewheel event
  301. this.overflowx = self.opt.overflowx;
  302. this.overflowy = self.opt.overflowy;
  303. this.nativescrollingarea = false;
  304. this.checkarea = 0;
  305. this.events = []; // event list for unbind
  306. this.saved = {}; // style saved
  307. this.delaylist = {};
  308. this.synclist = {};
  309. this.lastdeltax = 0;
  310. this.lastdeltay = 0;
  311. this.detected = getBrowserDetection();
  312. var cap = $.extend({}, this.detected);
  313. this.canhwscroll = (cap.hastransform && self.opt.hwacceleration);
  314. this.ishwscroll = (this.canhwscroll && self.haswrapper);
  315. if (!this.isrtlmode) {
  316. this.hasreversehr = false;
  317. } else if (this.isvertical) { // RTL mode with reverse horizontal axis
  318. this.hasreversehr = !(cap.iswebkit || cap.isie || cap.isie11);
  319. } else {
  320. this.hasreversehr = !(cap.iswebkit || (cap.isie && !cap.isie10 && !cap.isie11));
  321. }
  322. this.istouchcapable = false; // desktop devices with touch screen support
  323. //## Check WebKit-based desktop with touch support
  324. //## + Firefox 18 nightly build (desktop) false positive (or desktop with touch support)
  325. if (!cap.cantouch && (cap.hasw3ctouch||cap.hasmstouch)) { // desktop device with multiple input
  326. this.istouchcapable = true;
  327. } else if (cap.cantouch && !cap.isios && !cap.isandroid && (cap.iswebkit || cap.ismozilla)) {
  328. this.istouchcapable = true;
  329. // cap.cantouch = false; // parse normal desktop events
  330. }
  331. //## disable MouseLock API on user request
  332. if (!self.opt.enablemouselockapi) {
  333. cap.hasmousecapture = false;
  334. cap.haspointerlock = false;
  335. }
  336. /* deprecated
  337. this.delayed = function(name, fn, tm, lazy) {
  338. };
  339. */
  340. /*
  341. this.debounced = function(name, fn, tm) {
  342. if (!self) return;
  343. var dd = self.delaylist[name];
  344. self.delaylist[name] = fn;
  345. if (!dd) {
  346. self.debouncedelayed = setTimeout(function() {
  347. if (!self) return;
  348. var fn = self.delaylist[name];
  349. self.delaylist[name] = false;
  350. fn.call(self);
  351. }, tm);
  352. }
  353. };
  354. */
  355. this.debounced = function(name, fn, tm) {
  356. if (!self) return;
  357. var dd = self.delaylist[name]||false;
  358. if (!dd) {
  359. //fixed loop call fn:checkSelectionScroll
  360. //fn.call(self);
  361. self.delaylist[name] = {
  362. h: setAnimationFrame(function(){
  363. self.delaylist[name].fn.call(self);
  364. self.delaylist[name] = false;
  365. }, tm)
  366. };
  367. fn.call(self);
  368. }
  369. self.delaylist[name].fn = fn;
  370. };
  371. var _onsync = false;
  372. this.synched = function(name, fn) {
  373. function requestSync() {
  374. if (_onsync) return;
  375. setAnimationFrame(function() {
  376. if (!self) return;
  377. _onsync = false;
  378. for (var nn in self.synclist) {
  379. var fn = self.synclist[nn];
  380. if (fn) fn.call(self);
  381. self.synclist[nn] = false;
  382. }
  383. });
  384. _onsync = true;
  385. }
  386. self.synclist[name] = fn;
  387. requestSync();
  388. return name;
  389. };
  390. this.unsynched = function(name) {
  391. if (self.synclist[name]) self.synclist[name] = false;
  392. };
  393. this.css = function(el, pars) { // save & set
  394. for (var n in pars) {
  395. self.saved.css.push([el, n, el.css(n)]);
  396. el.css(n, pars[n]);
  397. }
  398. };
  399. this.scrollTop = function(val) {
  400. return (val === undefined) ? self.getScrollTop() : self.setScrollTop(val);
  401. };
  402. this.scrollLeft = function(val) {
  403. return (val === undefined) ? self.getScrollLeft() : self.setScrollLeft(val);
  404. };
  405. // derived by by Dan Pupius www.pupius.net
  406. var BezierClass = function(st, ed, spd, p1, p2, p3, p4) {
  407. this.st = st;
  408. this.ed = ed;
  409. this.spd = spd;
  410. this.p1 = p1 || 0;
  411. this.p2 = p2 || 1;
  412. this.p3 = p3 || 0;
  413. this.p4 = p4 || 1;
  414. this.ts = (new Date()).getTime();
  415. this.df = this.ed - this.st;
  416. };
  417. BezierClass.prototype = {
  418. B2: function(t) {
  419. return 3 * t * t * (1 - t);
  420. },
  421. B3: function(t) {
  422. return 3 * t * (1 - t) * (1 - t);
  423. },
  424. B4: function(t) {
  425. return (1 - t) * (1 - t) * (1 - t);
  426. },
  427. getNow: function() {
  428. var nw = (new Date()).getTime();
  429. var pc = 1 - ((nw - this.ts) / this.spd);
  430. var bz = this.B2(pc) + this.B3(pc) + this.B4(pc);
  431. return (pc < 0) ? this.ed : this.st + Math.round(this.df * bz);
  432. },
  433. update: function(ed, spd) {
  434. this.st = this.getNow();
  435. this.ed = ed;
  436. this.spd = spd;
  437. this.ts = (new Date()).getTime();
  438. this.df = this.ed - this.st;
  439. return this;
  440. }
  441. };
  442. //derived from http://stackoverflow.com/questions/11236090/
  443. function getMatrixValues() {
  444. var tr = self.doc.css(cap.trstyle);
  445. if (tr && (tr.substr(0, 6) == "matrix")) {
  446. return tr.replace(/^.*\((.*)\)$/g, "$1").replace(/px/g, '').split(/, +/);
  447. }
  448. return false;
  449. }
  450. if (this.ishwscroll) {
  451. // hw accelerated scroll
  452. this.doc.translate = {
  453. x: 0,
  454. y: 0,
  455. tx: "0px",
  456. ty: "0px"
  457. };
  458. //this one can help to enable hw accel on ios6 http://indiegamr.com/ios6-html-hardware-acceleration-changes-and-how-to-fix-them/
  459. if (cap.hastranslate3d && cap.isios) this.doc.css("-webkit-backface-visibility", "hidden"); // prevent flickering http://stackoverflow.com/questions/3461441/
  460. this.getScrollTop = function(last) {
  461. if (!last) {
  462. var mtx = getMatrixValues();
  463. if (mtx) return (mtx.length == 16) ? -mtx[13] : -mtx[5]; //matrix3d 16 on IE10
  464. if (self.timerscroll && self.timerscroll.bz) return self.timerscroll.bz.getNow();
  465. }
  466. return self.doc.translate.y;
  467. };
  468. this.getScrollLeft = function(last) {
  469. if (!last) {
  470. var mtx = getMatrixValues();
  471. if (mtx) return (mtx.length == 16) ? -mtx[12] : -mtx[4]; //matrix3d 16 on IE10
  472. if (self.timerscroll && self.timerscroll.bh) return self.timerscroll.bh.getNow();
  473. }
  474. return self.doc.translate.x;
  475. };
  476. this.notifyScrollEvent = function(el) {
  477. var e = document.createEvent("UIEvents");
  478. e.initUIEvent("scroll", false, true, window, 1);
  479. e.niceevent = true;
  480. el.dispatchEvent(e);
  481. };
  482. var cxscrollleft = (this.isrtlmode) ? 1 : -1;
  483. if (cap.hastranslate3d && self.opt.enabletranslate3d) {
  484. this.setScrollTop = function(val, silent) {
  485. self.doc.translate.y = val;
  486. self.doc.translate.ty = (val * -1) + "px";
  487. self.doc.css(cap.trstyle, "translate3d(" + self.doc.translate.tx + "," + self.doc.translate.ty + ",0px)");
  488. if (!silent) self.notifyScrollEvent(self.win[0]);
  489. };
  490. this.setScrollLeft = function(val, silent) {
  491. self.doc.translate.x = val;
  492. self.doc.translate.tx = (val * cxscrollleft) + "px";
  493. self.doc.css(cap.trstyle, "translate3d(" + self.doc.translate.tx + "," + self.doc.translate.ty + ",0px)");
  494. if (!silent) self.notifyScrollEvent(self.win[0]);
  495. };
  496. } else {
  497. this.setScrollTop = function(val, silent) {
  498. self.doc.translate.y = val;
  499. self.doc.translate.ty = (val * -1) + "px";
  500. self.doc.css(cap.trstyle, "translate(" + self.doc.translate.tx + "," + self.doc.translate.ty + ")");
  501. if (!silent) self.notifyScrollEvent(self.win[0]);
  502. };
  503. this.setScrollLeft = function(val, silent) {
  504. self.doc.translate.x = val;
  505. self.doc.translate.tx = (val * cxscrollleft) + "px";
  506. self.doc.css(cap.trstyle, "translate(" + self.doc.translate.tx + "," + self.doc.translate.ty + ")");
  507. if (!silent) self.notifyScrollEvent(self.win[0]);
  508. };
  509. }
  510. } else {
  511. // native scroll
  512. this.getScrollTop = function() {
  513. return self.docscroll.scrollTop();
  514. };
  515. this.setScrollTop = function(val) {
  516. return setTimeout(function() {(self)&&self.docscroll.scrollTop(val)}, 1);
  517. };
  518. this.getScrollLeft = function() {
  519. var val;
  520. if (!self.hasreversehr) {
  521. val = self.docscroll.scrollLeft();
  522. } else if (self.detected.ismozilla) {
  523. val = self.page.maxw - Math.abs(self.docscroll.scrollLeft());
  524. } else {
  525. val = self.page.maxw - self.docscroll.scrollLeft();
  526. }
  527. return val;
  528. };
  529. this.setScrollLeft = function(val) {
  530. return setTimeout(function() {
  531. if (!self) return;
  532. if (self.hasreversehr) {
  533. if (self.detected.ismozilla) {
  534. val = -(self.page.maxw - val);
  535. } else {
  536. val = self.page.maxw - val;
  537. }
  538. }
  539. return self.docscroll.scrollLeft(val);
  540. }, 1);
  541. };
  542. }
  543. this.getTarget = function(e) {
  544. if (!e) return false;
  545. if (e.target) return e.target;
  546. if (e.srcElement) return e.srcElement;
  547. return false;
  548. };
  549. this.hasParent = function(e, id) {
  550. if (!e) return false;
  551. var el = e.target || e.srcElement || e || false;
  552. while (el && el.id != id) {
  553. el = el.parentNode || false;
  554. }
  555. return (el !== false);
  556. };
  557. function getZIndex() {
  558. var dom = self.win;
  559. if ("zIndex" in dom) return dom.zIndex(); // use jQuery UI method when available
  560. while (dom.length > 0) {
  561. if (dom[0].nodeType == 9) return false;
  562. var zi = dom.css('zIndex');
  563. if (!isNaN(zi) && zi != 0) return parseInt(zi);
  564. dom = dom.parent();
  565. }
  566. return false;
  567. }
  568. //inspired by http://forum.jquery.com/topic/width-includes-border-width-when-set-to-thin-medium-thick-in-ie
  569. var _convertBorderWidth = {
  570. "thin": 1,
  571. "medium": 3,
  572. "thick": 5
  573. };
  574. function getWidthToPixel(dom, prop, chkheight) {
  575. var wd = dom.css(prop);
  576. var px = parseFloat(wd);
  577. if (isNaN(px)) {
  578. px = _convertBorderWidth[wd] || 0;
  579. var brd = (px == 3) ? ((chkheight) ? (self.win.outerHeight() - self.win.innerHeight()) : (self.win.outerWidth() - self.win.innerWidth())) : 1; //DON'T TRUST CSS
  580. if (self.isie8 && px) px += 1;
  581. return (brd) ? px : 0;
  582. }
  583. return px;
  584. }
  585. this.getDocumentScrollOffset = function() {
  586. return {
  587. top: window.pageYOffset || document.documentElement.scrollTop,
  588. left: window.pageXOffset || document.documentElement.scrollLeft
  589. };
  590. };
  591. this.getOffset = function() {
  592. if (self.isfixed) {
  593. var ofs = self.win.offset(); // fix Chrome auto issue (when right/bottom props only)
  594. var scrl = self.getDocumentScrollOffset();
  595. ofs.top-=scrl.top;
  596. ofs.left-=scrl.left;
  597. return ofs;
  598. }
  599. var ww = self.win.offset();
  600. if (!self.viewport) return ww;
  601. var vp = self.viewport.offset();
  602. return {
  603. top: ww.top - vp.top,// + self.viewport.scrollTop(),
  604. left: ww.left - vp.left // + self.viewport.scrollLeft()
  605. };
  606. };
  607. this.updateScrollBar = function(len) {
  608. var pos, off;
  609. if (self.ishwscroll) {
  610. self.rail.css({ //**
  611. height: self.win.innerHeight() - (self.opt.railpadding.top + self.opt.railpadding.bottom)
  612. });
  613. if (self.railh) self.railh.css({ //**
  614. width: self.win.innerWidth() - (self.opt.railpadding.left + self.opt.railpadding.right)
  615. });
  616. } else {
  617. var wpos = self.getOffset();
  618. pos = {
  619. top: wpos.top,
  620. left: wpos.left - (self.opt.railpadding.left + self.opt.railpadding.right)
  621. };
  622. pos.top += getWidthToPixel(self.win, 'border-top-width', true);
  623. pos.left += (self.rail.align) ? self.win.outerWidth() - getWidthToPixel(self.win, 'border-right-width') - self.rail.width : getWidthToPixel(self.win, 'border-left-width');
  624. off = self.opt.railoffset;
  625. if (off) {
  626. if (off.top) pos.top += off.top;
  627. if (off.left) pos.left += off.left;
  628. }
  629. if (!self.railslocked) self.rail.css({
  630. top: pos.top,
  631. left: pos.left,
  632. height: ((len) ? len.h : self.win.innerHeight()) - (self.opt.railpadding.top + self.opt.railpadding.bottom)
  633. });
  634. if (self.zoom) {
  635. self.zoom.css({
  636. top: pos.top + 1,
  637. left: (self.rail.align == 1) ? pos.left - 20 : pos.left + self.rail.width + 4
  638. });
  639. }
  640. if (self.railh && !self.railslocked) {
  641. pos = {
  642. top: wpos.top,
  643. left: wpos.left
  644. };
  645. off = self.opt.railhoffset;
  646. if (off) {
  647. if (off.top) pos.top += off.top;
  648. if (off.left) pos.left += off.left;
  649. }
  650. var y = (self.railh.align) ? pos.top + getWidthToPixel(self.win, 'border-top-width', true) + self.win.innerHeight() - self.railh.height : pos.top + getWidthToPixel(self.win, 'border-top-width', true);
  651. var x = pos.left + getWidthToPixel(self.win, 'border-left-width');
  652. self.railh.css({
  653. top: y - (self.opt.railpadding.top + self.opt.railpadding.bottom),
  654. left: x,
  655. width: self.railh.width
  656. });
  657. }
  658. }
  659. };
  660. this.doRailClick = function(e, dbl, hr) {
  661. var fn, pg, cur, pos;
  662. if (self.railslocked) return;
  663. self.cancelEvent(e);
  664. if (dbl) {
  665. fn = (hr) ? self.doScrollLeft : self.doScrollTop;
  666. cur = (hr) ? ((e.pageX - self.railh.offset().left - (self.cursorwidth / 2)) * self.scrollratio.x) : ((e.pageY - self.rail.offset().top - (self.cursorheight / 2)) * self.scrollratio.y);
  667. fn(cur);
  668. } else {
  669. fn = (hr) ? self.doScrollLeftBy : self.doScrollBy;
  670. cur = (hr) ? self.scroll.x : self.scroll.y;
  671. pos = (hr) ? e.pageX - self.railh.offset().left : e.pageY - self.rail.offset().top;
  672. pg = (hr) ? self.view.w : self.view.h;
  673. fn((cur >= pos) ? pg: -pg);// (cur >= pos) ? fn(pg): fn(-pg);
  674. }
  675. };
  676. self.hasanimationframe = (setAnimationFrame);
  677. self.hascancelanimationframe = (clearAnimationFrame);
  678. if (!self.hasanimationframe) {
  679. setAnimationFrame = function(fn) {
  680. return setTimeout(fn, 15 - Math.floor((+new Date()) / 1000) % 16);
  681. }; // 1000/60)};
  682. clearAnimationFrame = clearTimeout;
  683. } else if (!self.hascancelanimationframe) clearAnimationFrame = function() {
  684. self.cancelAnimationFrame = true;
  685. };
  686. this.init = function() {
  687. self.saved.css = [];
  688. if (cap.isie7mobile) return true; // SORRY, DO NOT WORK!
  689. if (cap.isoperamini) return true; // SORRY, DO NOT WORK!
  690. var _touchaction = (cap.isie10) ? '-ms-touch-action' : 'touch-action';
  691. if (cap.hasmstouch) self.css((self.ispage) ? $("html") : self.win, {
  692. _touchaction: 'none'
  693. });
  694. var _scrollyhidden = (cap.ismodernie||cap.isie10) ? {'-ms-overflow-style':'none'} : {'overflow-y':'hidden'}; // IE is always a world apart!
  695. self.zindex = "auto";
  696. if (!self.ispage && self.opt.zindex == "auto") {
  697. self.zindex = getZIndex() || "auto";
  698. } else {
  699. self.zindex = self.opt.zindex;
  700. }
  701. if (!self.ispage && self.zindex != "auto" && self.zindex > globalmaxzindex) {
  702. globalmaxzindex = self.zindex;
  703. }
  704. if (self.isie && self.zindex == 0 && self.opt.zindex == "auto") { // fix IE auto == 0
  705. self.zindex = "auto";
  706. }
  707. if (!self.ispage || (!cap.cantouch && !cap.isieold && !cap.isie9mobile)) {
  708. var cont = self.docscroll;
  709. if (self.ispage) cont = (self.haswrapper) ? self.win : self.doc;
  710. if (!cap.isie9mobile) self.css(cont, _scrollyhidden);
  711. if (self.ispage && cap.isie7) {
  712. if (self.doc[0].nodeName == 'BODY') self.css($("html"), {
  713. 'overflow-y': 'hidden'
  714. }); //IE7 double scrollbar issue
  715. else if (self.doc[0].nodeName == 'HTML') self.css($("body"), _scrollyhidden); //IE7 double scrollbar issue
  716. }
  717. if (cap.isios && !self.ispage && !self.haswrapper) self.css($("body"), {
  718. "-webkit-overflow-scrolling": "touch"
  719. }); //force hw acceleration
  720. var cursor = $(document.createElement('div'));
  721. cursor.css({
  722. position: "relative",
  723. top: 0,
  724. "float": "right",
  725. width: self.opt.cursorwidth,
  726. height: 0,
  727. 'background-color': self.opt.cursorcolor,
  728. border: self.opt.cursorborder,
  729. 'background-clip': 'padding-box',
  730. '-webkit-border-radius': self.opt.cursorborderradius,
  731. '-moz-border-radius': self.opt.cursorborderradius,
  732. 'border-radius': self.opt.cursorborderradius
  733. });
  734. cursor.hborder = parseFloat(cursor.outerHeight() - cursor.innerHeight());
  735. cursor.addClass('nicescroll-cursors');
  736. self.cursor = cursor;
  737. var rail = $(document.createElement('div'));
  738. rail.attr('id', self.id);
  739. rail.addClass('nicescroll-rails nicescroll-rails-vr');
  740. var v, a, kp = ["left","right","top","bottom"]; //**
  741. for (var n in kp) {
  742. a = kp[n];
  743. v = self.opt.railpadding[a];
  744. (v) ? rail.css("padding-"+a,v+"px") : self.opt.railpadding[a] = 0;
  745. }
  746. rail.append(cursor);
  747. rail.width = Math.max(parseFloat(self.opt.cursorwidth), cursor.outerWidth());
  748. rail.css({
  749. width: rail.width + "px",
  750. zIndex: self.zindex,
  751. background: self.opt.background,
  752. cursor: "default"
  753. });
  754. rail.visibility = true;
  755. rail.scrollable = true;
  756. rail.align = (self.opt.railalign == "left") ? 0 : 1;
  757. self.rail = rail;
  758. self.rail.drag = false;
  759. var zoom = false;
  760. if (self.opt.boxzoom && !self.ispage && !cap.isieold) {
  761. zoom = document.createElement('div');
  762. self.bind(zoom, "click", self.doZoom);
  763. self.bind(zoom, "mouseenter", function() {
  764. self.zoom.css('opacity', self.opt.cursoropacitymax);
  765. });
  766. self.bind(zoom, "mouseleave", function() {
  767. self.zoom.css('opacity', self.opt.cursoropacitymin);
  768. });
  769. self.zoom = $(zoom);
  770. self.zoom.css({
  771. cursor: "pointer",
  772. zIndex: self.zindex,
  773. backgroundImage: 'url(' + self.opt.scriptpath + 'zoomico.png)',
  774. height: 18,
  775. width: 18,
  776. backgroundPosition: '0px 0px'
  777. });
  778. if (self.opt.dblclickzoom) self.bind(self.win, "dblclick", self.doZoom);
  779. if (cap.cantouch && self.opt.gesturezoom) {
  780. self.ongesturezoom = function(e) {
  781. if (e.scale > 1.5) self.doZoomIn(e);
  782. if (e.scale < 0.8) self.doZoomOut(e);
  783. return self.cancelEvent(e);
  784. };
  785. self.bind(self.win, "gestureend", self.ongesturezoom);
  786. }
  787. }
  788. // init HORIZ
  789. self.railh = false;
  790. var railh;
  791. if (self.opt.horizrailenabled) {
  792. self.css(cont, {
  793. overflowX: 'hidden'
  794. });
  795. var cursor = $(document.createElement('div'));
  796. cursor.css({
  797. position: "absolute",
  798. top: 0,
  799. height: self.opt.cursorwidth,
  800. width: 0,
  801. backgroundColor: self.opt.cursorcolor,
  802. border: self.opt.cursorborder,
  803. backgroundClip: 'padding-box',
  804. '-webkit-border-radius': self.opt.cursorborderradius,
  805. '-moz-border-radius': self.opt.cursorborderradius,
  806. 'border-radius': self.opt.cursorborderradius
  807. });
  808. if (cap.isieold) cursor.css('overflow', 'hidden'); //IE6 horiz scrollbar issue
  809. cursor.wborder = parseFloat(cursor.outerWidth() - cursor.innerWidth());
  810. cursor.addClass('nicescroll-cursors');
  811. self.cursorh = cursor;
  812. railh = $(document.createElement('div'));
  813. railh.attr('id', self.id + '-hr');
  814. railh.addClass('nicescroll-rails nicescroll-rails-hr');
  815. railh.height = Math.max(parseFloat(self.opt.cursorwidth), cursor.outerHeight());
  816. railh.css({
  817. height: railh.height + "px",
  818. 'zIndex': self.zindex,
  819. "background": self.opt.background
  820. });
  821. railh.append(cursor);
  822. railh.visibility = true;
  823. railh.scrollable = true;
  824. railh.align = (self.opt.railvalign == "top") ? 0 : 1;
  825. self.railh = railh;
  826. self.railh.drag = false;
  827. }
  828. //
  829. if (self.ispage) {
  830. rail.css({
  831. position: "fixed",
  832. top: 0,
  833. height: "100%"
  834. });
  835. (rail.align) ? rail.css({
  836. right: 0
  837. }): rail.css({
  838. left: 0
  839. });
  840. self.body.append(rail);
  841. if (self.railh) {
  842. railh.css({
  843. position: "fixed",
  844. left: 0,
  845. width: "100%"
  846. });
  847. (railh.align) ? railh.css({
  848. bottom: 0
  849. }): railh.css({
  850. top: 0
  851. });
  852. self.body.append(railh);
  853. }
  854. } else {
  855. if (self.ishwscroll) {
  856. if (self.win.css('position') == 'static') self.css(self.win, {
  857. 'position': 'relative'
  858. });
  859. var bd = (self.win[0].nodeName == 'HTML') ? self.body : self.win;
  860. $(bd).scrollTop(0).scrollLeft(0); // fix rail position if content already scrolled
  861. if (self.zoom) {
  862. self.zoom.css({
  863. position: "absolute",
  864. top: 1,
  865. right: 0,
  866. "margin-right": rail.width + 4
  867. });
  868. bd.append(self.zoom);
  869. }
  870. rail.css({
  871. position: "absolute",
  872. top: 0
  873. });
  874. (rail.align) ? rail.css({
  875. right: 0
  876. }): rail.css({
  877. left: 0
  878. });
  879. bd.append(rail);
  880. if (railh) {
  881. railh.css({
  882. position: "absolute",
  883. left: 0,
  884. bottom: 0
  885. });
  886. (railh.align) ? railh.css({
  887. bottom: 0
  888. }): railh.css({
  889. top: 0
  890. });
  891. bd.append(railh);
  892. }
  893. } else {
  894. self.isfixed = (self.win.css("position") == "fixed");
  895. var rlpos = (self.isfixed) ? "fixed" : "absolute";
  896. if (!self.isfixed) self.viewport = self.getViewport(self.win[0]);
  897. if (self.viewport) {
  898. self.body = self.viewport;
  899. if ((/fixed|absolute/.test(self.viewport.css("position"))) == false) self.css(self.viewport, {
  900. "position": "relative"
  901. });
  902. }
  903. rail.css({
  904. position: rlpos
  905. });
  906. if (self.zoom) self.zoom.css({
  907. position: rlpos
  908. });
  909. self.updateScrollBar();
  910. self.body.append(rail);
  911. if (self.zoom) self.body.append(self.zoom);
  912. if (self.railh) {
  913. railh.css({
  914. position: rlpos
  915. });
  916. self.body.append(railh);
  917. }
  918. }
  919. if (cap.isios) self.css(self.win, {
  920. '-webkit-tap-highlight-color': 'rgba(0,0,0,0)',
  921. '-webkit-touch-callout': 'none'
  922. }); // prevent grey layer on click
  923. if (cap.isie && self.opt.disableoutline) self.win.attr("hideFocus", "true"); // IE, prevent dotted rectangle on focused div
  924. if (cap.iswebkit && self.opt.disableoutline) self.win.css('outline', 'none'); // Webkit outline
  925. //if (cap.isopera&&self.opt.disableoutline) self.win.css({"outline":"0"}); // Opera 12- to test [TODO]
  926. }
  927. if (self.opt.autohidemode === false) {
  928. self.autohidedom = false;
  929. self.rail.css({
  930. opacity: self.opt.cursoropacitymax
  931. });
  932. if (self.railh) self.railh.css({
  933. opacity: self.opt.cursoropacitymax
  934. });
  935. } else if ((self.opt.autohidemode === true) || (self.opt.autohidemode === "leave")) {
  936. self.autohidedom = $().add(self.rail);
  937. if (cap.isie8) self.autohidedom = self.autohidedom.add(self.cursor);
  938. if (self.railh) self.autohidedom = self.autohidedom.add(self.railh);
  939. if (self.railh && cap.isie8) self.autohidedom = self.autohidedom.add(self.cursorh);
  940. } else if (self.opt.autohidemode == "scroll") {
  941. self.autohidedom = $().add(self.rail);
  942. if (self.railh) self.autohidedom = self.autohidedom.add(self.railh);
  943. } else if (self.opt.autohidemode == "cursor") {
  944. self.autohidedom = $().add(self.cursor);
  945. if (self.railh) self.autohidedom = self.autohidedom.add(self.cursorh);
  946. } else if (self.opt.autohidemode == "hidden") {
  947. self.autohidedom = false;
  948. self.hide();
  949. self.railslocked = false;
  950. }
  951. if (cap.isie9mobile) {
  952. self.scrollmom = new ScrollMomentumClass2D(self);
  953. self.onmangotouch = function() {
  954. var py = self.getScrollTop();
  955. var px = self.getScrollLeft();
  956. if ((py == self.scrollmom.lastscrolly) && (px == self.scrollmom.lastscrollx)) return true;
  957. var dfy = py - self.mangotouch.sy;
  958. var dfx = px - self.mangotouch.sx;
  959. var df = Math.round(Math.sqrt(Math.pow(dfx, 2) + Math.pow(dfy, 2)));
  960. if (df == 0) return;
  961. var dry = (dfy < 0) ? -1 : 1;
  962. var drx = (dfx < 0) ? -1 : 1;
  963. var tm = +new Date();
  964. if (self.mangotouch.lazy) clearTimeout(self.mangotouch.lazy);
  965. if (((tm - self.mangotouch.tm) > 80) || (self.mangotouch.dry != dry) || (self.mangotouch.drx != drx)) {
  966. self.scrollmom.stop();
  967. self.scrollmom.reset(px, py);
  968. self.mangotouch.sy = py;
  969. self.mangotouch.ly = py;
  970. self.mangotouch.sx = px;
  971. self.mangotouch.lx = px;
  972. self.mangotouch.dry = dry;
  973. self.mangotouch.drx = drx;
  974. self.mangotouch.tm = tm;
  975. } else {
  976. self.scrollmom.stop();
  977. self.scrollmom.update(self.mangotouch.sx - dfx, self.mangotouch.sy - dfy);
  978. self.mangotouch.tm = tm;
  979. var ds = Math.max(Math.abs(self.mangotouch.ly - py), Math.abs(self.mangotouch.lx - px));
  980. self.mangotouch.ly = py;
  981. self.mangotouch.lx = px;
  982. if (ds > 2) {
  983. self.mangotouch.lazy = setTimeout(function() {
  984. self.mangotouch.lazy = false;
  985. self.mangotouch.dry = 0;
  986. self.mangotouch.drx = 0;
  987. self.mangotouch.tm = 0;
  988. self.scrollmom.doMomentum(30);
  989. }, 100);
  990. }
  991. }
  992. };
  993. var top = self.getScrollTop();
  994. var lef = self.getScrollLeft();
  995. self.mangotouch = {
  996. sy: top,
  997. ly: top,
  998. dry: 0,
  999. sx: lef,
  1000. lx: lef,
  1001. drx: 0,
  1002. lazy: false,
  1003. tm: 0
  1004. };
  1005. self.bind(self.docscroll, "scroll", self.onmangotouch);
  1006. } else {
  1007. if (cap.cantouch || self.istouchcapable || self.opt.touchbehavior || cap.hasmstouch) {
  1008. self.scrollmom = new ScrollMomentumClass2D(self);
  1009. self.ontouchstart = function(e) {
  1010. if (e.pointerType && e.pointerType != 2 && e.pointerType != "touch") return false;
  1011. self.hasmoving = false;
  1012. if (!self.railslocked) {
  1013. var tg;
  1014. if (cap.hasmstouch) {
  1015. tg = (e.target) ? e.target : false;
  1016. while (tg) {
  1017. var nc = $(tg).getNiceScroll();
  1018. if ((nc.length > 0) && (nc[0].me == self.me)) break;
  1019. if (nc.length > 0) return false;
  1020. if ((tg.nodeName == 'DIV') && (tg.id == self.id)) break;
  1021. tg = (tg.parentNode) ? tg.parentNode : false;
  1022. }
  1023. }
  1024. self.cancelScroll();
  1025. tg = self.getTarget(e);
  1026. if (tg) {
  1027. var skp = (/INPUT/i.test(tg.nodeName)) && (/range/i.test(tg.type));
  1028. if (skp) return self.stopPropagation(e);
  1029. }
  1030. if (!("clientX" in e) && ("changedTouches" in e)) {
  1031. e.clientX = e.changedTouches[0].clientX;
  1032. e.clientY = e.changedTouches[0].clientY;
  1033. }
  1034. if (self.forcescreen) {
  1035. var le = e;
  1036. e = {
  1037. "original": (e.original) ? e.original : e
  1038. };
  1039. e.clientX = le.screenX;
  1040. e.clientY = le.screenY;
  1041. }
  1042. self.rail.drag = {
  1043. x: e.clientX,
  1044. y: e.clientY,
  1045. sx: self.scroll.x,
  1046. sy: self.scroll.y,
  1047. st: self.getScrollTop(),
  1048. sl: self.getScrollLeft(),
  1049. pt: 2,
  1050. dl: false
  1051. };
  1052. if (self.ispage || !self.opt.directionlockdeadzone) {
  1053. self.rail.drag.dl = "f";
  1054. } else {
  1055. var view = {
  1056. w: $(window).width(),
  1057. h: $(window).height()
  1058. };
  1059. var page = {
  1060. w: Math.max(document.body.scrollWidth, document.documentElement.scrollWidth),
  1061. h: Math.max(document.body.scrollHeight, document.documentElement.scrollHeight)
  1062. };
  1063. var maxh = Math.max(0, page.h - view.h);
  1064. var maxw = Math.max(0, page.w - view.w);
  1065. if (!self.rail.scrollable && self.railh.scrollable) self.rail.drag.ck = (maxh > 0) ? "v" : false;
  1066. else if (self.rail.scrollable && !self.railh.scrollable) self.rail.drag.ck = (maxw > 0) ? "h" : false;
  1067. else self.rail.drag.ck = false;
  1068. if (!self.rail.drag.ck) self.rail.drag.dl = "f";
  1069. }
  1070. if (self.opt.touchbehavior && self.isiframe && cap.isie) {
  1071. var wp = self.win.position();
  1072. self.rail.drag.x += wp.left;
  1073. self.rail.drag.y += wp.top;
  1074. }
  1075. self.hasmoving = false;
  1076. self.lastmouseup = false;
  1077. self.scrollmom.reset(e.clientX, e.clientY);
  1078. if (!cap.cantouch && !this.istouchcapable && !e.pointerType) {
  1079. var ip = (tg) ? /INPUT|SELECT|TEXTAREA/i.test(tg.nodeName) : false;
  1080. if (!ip) {
  1081. if (!self.ispage && cap.hasmousecapture) tg.setCapture();
  1082. if (self.opt.touchbehavior) {
  1083. if (tg.onclick && !(tg._onclick || false)) { // intercept DOM0 onclick event
  1084. tg._onclick = tg.onclick;
  1085. tg.onclick = function(e) {
  1086. if (self.hasmoving) return false;
  1087. tg._onclick.call(this, e);
  1088. };
  1089. }
  1090. return self.cancelEvent(e);
  1091. }
  1092. return self.stopPropagation(e);
  1093. }
  1094. if (/SUBMIT|CANCEL|BUTTON/i.test($(tg).attr('type'))) {
  1095. self.preventclick = {
  1096. "tg": tg,
  1097. "click": false
  1098. };
  1099. }
  1100. }
  1101. }
  1102. };
  1103. self.ontouchend = function(e) {
  1104. if (!self.rail.drag) return true;
  1105. if (self.rail.drag.pt == 2) {
  1106. if (e.pointerType && e.pointerType != 2 && e.pointerType != "touch") return false;
  1107. self.scrollmom.doMomentum();
  1108. self.rail.drag = false;
  1109. if (self.hasmoving) {
  1110. self.lastmouseup = true;
  1111. self.hideCursor();
  1112. if (cap.hasmousecapture) document.releaseCapture();
  1113. if (!cap.cantouch) return self.cancelEvent(e);
  1114. }
  1115. }
  1116. else if (self.rail.drag.pt == 1) {
  1117. return self.onmouseup(e);
  1118. }
  1119. };
  1120. var moveneedoffset = (self.opt.touchbehavior && self.isiframe && !cap.hasmousecapture);
  1121. self.ontouchmove = function(e, byiframe) {
  1122. if (!self.rail.drag) return false;
  1123. if (e.targetTouches && self.opt.preventmultitouchscrolling) {
  1124. if (e.targetTouches.length > 1) return false; // multitouch
  1125. }
  1126. if (e.pointerType && e.pointerType != 2 && e.pointerType != "touch") return false;
  1127. if (self.rail.drag.pt == 2) {
  1128. if (cap.cantouch && (cap.isios) && e.original === undefined) return true; // prevent ios "ghost" events by clickable elements
  1129. self.hasmoving = true;
  1130. if (self.preventclick && !self.preventclick.click) {
  1131. self.preventclick.click = self.preventclick.tg.onclick || false;
  1132. self.preventclick.tg.onclick = self.onpreventclick;
  1133. }
  1134. var ev = $.extend({
  1135. "original": e
  1136. }, e);
  1137. e = ev;
  1138. if (("changedTouches" in e)) {
  1139. e.clientX = e.changedTouches[0].clientX;
  1140. e.clientY = e.changedTouches[0].clientY;
  1141. }
  1142. if (self.forcescreen) {
  1143. var le = e;
  1144. e = {
  1145. "original": (e.original) ? e.original : e
  1146. };
  1147. e.clientX = le.screenX;
  1148. e.clientY = le.screenY;
  1149. }
  1150. var ofy,ofx;
  1151. ofx = ofy = 0;
  1152. if (moveneedoffset && !byiframe) {
  1153. var wp = self.win.position();
  1154. ofx = -wp.left;
  1155. ofy = -wp.top;
  1156. }
  1157. var fy = e.clientY + ofy;
  1158. var my = (fy - self.rail.drag.y);
  1159. var fx = e.clientX + ofx;
  1160. var mx = (fx - self.rail.drag.x);
  1161. var ny = self.rail.drag.st - my;
  1162. if (self.ishwscroll && self.opt.bouncescroll) {
  1163. if (ny < 0) {
  1164. ny = Math.round(ny / 2);
  1165. // fy = 0;
  1166. } else if (ny > self.page.maxh) {
  1167. ny = self.page.maxh + Math.round((ny - self.page.maxh) / 2);
  1168. // fy = 0;
  1169. }
  1170. } else {
  1171. if (ny < 0) {
  1172. ny = 0;
  1173. fy = 0;
  1174. }
  1175. if (ny > self.page.maxh) {
  1176. ny = self.page.maxh;
  1177. fy = 0;
  1178. }
  1179. }
  1180. var nx;
  1181. if (self.railh && self.railh.scrollable) {
  1182. nx = (self.isrtlmode) ? mx - self.rail.drag.sl : self.rail.drag.sl - mx;
  1183. if (self.ishwscroll && self.opt.bouncescroll) {
  1184. if (nx < 0) {
  1185. nx = Math.round(nx / 2);
  1186. // fx = 0;
  1187. } else if (nx > self.page.maxw) {
  1188. nx = self.page.maxw + Math.round((nx - self.page.maxw) / 2);
  1189. // fx = 0;
  1190. }
  1191. } else {
  1192. if (nx < 0) {
  1193. nx = 0;
  1194. fx = 0;
  1195. }
  1196. if (nx > self.page.maxw) {
  1197. nx = self.page.maxw;
  1198. fx = 0;
  1199. }
  1200. }
  1201. }
  1202. var grabbed = false;
  1203. if (self.rail.drag.dl) {
  1204. grabbed = true;
  1205. if (self.rail.drag.dl == "v") nx = self.rail.drag.sl;
  1206. else if (self.rail.drag.dl == "h") ny = self.rail.drag.st;
  1207. } else {
  1208. var ay = Math.abs(my);
  1209. var ax = Math.abs(mx);
  1210. var dz = self.opt.directionlockdeadzone;
  1211. if (self.rail.drag.ck == "v") {
  1212. if (ay > dz && (ax <= (ay * 0.3))) {
  1213. self.rail.drag = false;
  1214. return true;
  1215. } else if (ax > dz) {
  1216. self.rail.drag.dl = "f";
  1217. $("body").scrollTop($("body").scrollTop()); // stop iOS native scrolling (when active javascript has blocked)
  1218. }
  1219. } else if (self.rail.drag.ck == "h") {
  1220. if (ax > dz && (ay <= (ax * 0.3))) {
  1221. self.rail.drag = false;
  1222. return true;
  1223. } else if (ay > dz) {
  1224. self.rail.drag.dl = "f";
  1225. $("body").scrollLeft($("body").scrollLeft()); // stop iOS native scrolling (when active javascript has blocked)
  1226. }
  1227. }
  1228. }
  1229. self.synched("touchmove", function() {
  1230. if (self.rail.drag && (self.rail.drag.pt == 2)) {
  1231. if (self.prepareTransition) self.prepareTransition(0);
  1232. if (self.rail.scrollable) self.setScrollTop(ny);
  1233. self.scrollmom.update(fx, fy);
  1234. if (self.railh && self.railh.scrollable) {
  1235. self.setScrollLeft(nx);
  1236. self.showCursor(ny, nx);
  1237. } else {
  1238. self.showCursor(ny);
  1239. }
  1240. if (cap.isie10) document.selection.clear();
  1241. }
  1242. });
  1243. if (cap.ischrome && self.istouchcapable) grabbed = false; //chrome touch emulation doesn't like!
  1244. if (grabbed) return self.cancelEvent(e);
  1245. }
  1246. else if (self.rail.drag.pt == 1) { // drag on cursor
  1247. return self.onmousemove(e);
  1248. }
  1249. };
  1250. self.ontouchstartCursor = function (e, hronly) {
  1251. if (self.rail.drag && self.rail.drag.pt != 3) return;
  1252. if (self.locked) return self.cancelEvent(e);
  1253. self.cancelScroll();
  1254. self.rail.drag = {
  1255. x: e.touches[0].clientX,
  1256. y: e.touches[0].clientY,
  1257. sx: self.scroll.x,
  1258. sy: self.scroll.y,
  1259. pt: 3,
  1260. hr: (!!hronly)
  1261. };
  1262. var tg = self.getTarget(e);
  1263. if (!self.ispage && cap.hasmousecapture) tg.setCapture();
  1264. if (self.isiframe && !cap.hasmousecapture) {
  1265. self.saved["csspointerevents"] = self.doc.css("pointer-events");
  1266. self.css(self.doc, {"pointer-events": "none"});
  1267. }
  1268. return self.cancelEvent(e);
  1269. };
  1270. self.ontouchendCursor = function (e) {
  1271. if (self.rail.drag) {
  1272. if (cap.hasmousecapture) document.releaseCapture();
  1273. if (self.isiframe && !cap.hasmousecapture) self.doc.css("pointer-events", self.saved["csspointerevents"]);
  1274. if (self.rail.drag.pt != 3)return;
  1275. self.rail.drag = false;
  1276. //if (!self.rail.active) self.hideCursor();
  1277. return self.cancelEvent(e);
  1278. }
  1279. };
  1280. self.ontouchmoveCursor = function (e) {
  1281. if (self.rail.drag) {
  1282. if (self.rail.drag.pt != 3)return;
  1283. self.cursorfreezed = true;
  1284. if (self.rail.drag.hr) {
  1285. self.scroll.x = self.rail.drag.sx + (e.touches[0].clientX - self.rail.drag.x);
  1286. if (self.scroll.x < 0) self.scroll.x = 0;
  1287. var mw = self.scrollvaluemaxw;
  1288. if (self.scroll.x > mw) self.scroll.x = mw;
  1289. } else {
  1290. self.scroll.y = self.rail.drag.sy + (e.touches[0].clientY - self.rail.drag.y);
  1291. if (self.scroll.y < 0) self.scroll.y = 0;
  1292. var my = self.scrollvaluemax;
  1293. if (self.scroll.y > my) self.scroll.y = my;
  1294. }
  1295. self.synched('touchmove', function () {
  1296. if (self.rail.drag && (self.rail.drag.pt == 3)) {
  1297. self.showCursor();
  1298. if (self.rail.drag.hr) self.doScrollLeft(Math.round(self.scroll.x * self.scrollratio.x), self.opt.cursordragspeed);
  1299. else self.doScrollTop(Math.round(self.scroll.y * self.scrollratio.y), self.opt.cursordragspeed);
  1300. }
  1301. });
  1302. return self.cancelEvent(e);
  1303. }
  1304. /*
  1305. else {
  1306. self.checkarea = true;
  1307. }
  1308. */
  1309. };
  1310. }
  1311. self.onmousedown = function(e, hronly) {
  1312. if (self.rail.drag && self.rail.drag.pt != 1) return;
  1313. if (self.railslocked) return self.cancelEvent(e);
  1314. self.cancelScroll();
  1315. self.rail.drag = {
  1316. x: e.clientX,
  1317. y: e.clientY,
  1318. sx: self.scroll.x,
  1319. sy: self.scroll.y,
  1320. pt: 1,
  1321. hr: (!!hronly)
  1322. };
  1323. var tg = self.getTarget(e);
  1324. if (!self.ispage && cap.hasmousecapture) tg.setCapture();
  1325. if (self.isiframe && !cap.hasmousecapture) {
  1326. self.saved.csspointerevents = self.doc.css("pointer-events");
  1327. self.css(self.doc, {
  1328. "pointer-events": "none"
  1329. });
  1330. }
  1331. self.hasmoving = false;
  1332. return self.cancelEvent(e);
  1333. };
  1334. self.onmouseup = function(e) {
  1335. if (self.rail.drag) {
  1336. if (self.rail.drag.pt != 1) return true;
  1337. if (cap.hasmousecapture) document.releaseCapture();
  1338. if (self.isiframe && !cap.hasmousecapture) self.doc.css("pointer-events", self.saved.csspointerevents);
  1339. self.rail.drag = false;
  1340. //if (!self.rail.active) self.hideCursor();
  1341. if (self.hasmoving) self.triggerScrollEnd(); // TODO - check &&!self.scrollrunning
  1342. return self.cancelEvent(e);
  1343. }
  1344. };
  1345. self.onmousemove = function(e) {
  1346. if (self.rail.drag) {
  1347. if (self.rail.drag.pt != 1) return;
  1348. if (cap.ischrome && e.which == 0) return self.onmouseup(e);
  1349. self.cursorfreezed = true;
  1350. self.hasmoving = true;
  1351. if (self.rail.drag.hr) {
  1352. self.scroll.x = self.rail.drag.sx + (e.clientX - self.rail.drag.x);
  1353. if (self.scroll.x < 0) self.scroll.x = 0;
  1354. var mw = self.scrollvaluemaxw;
  1355. if (self.scroll.x > mw) self.scroll.x = mw;
  1356. } else {
  1357. self.scroll.y = self.rail.drag.sy + (e.clientY - self.rail.drag.y);
  1358. if (self.scroll.y < 0) self.scroll.y = 0;
  1359. var my = self.scrollvaluemax;
  1360. if (self.scroll.y > my) self.scroll.y = my;
  1361. }
  1362. self.synched('mousemove', function() {
  1363. if (self.rail.drag && (self.rail.drag.pt == 1)) {
  1364. self.showCursor();
  1365. if (self.rail.drag.hr) {
  1366. if (self.hasreversehr) {
  1367. self.doScrollLeft(self.scrollvaluemaxw-Math.round(self.scroll.x * self.scrollratio.x), self.opt.cursordragspeed);
  1368. } else {
  1369. self.doScrollLeft(Math.round(self.scroll.x * self.scrollratio.x), self.opt.cursordragspeed);
  1370. }
  1371. }
  1372. else self.doScrollTop(Math.round(self.scroll.y * self.scrollratio.y), self.opt.cursordragspeed);
  1373. }
  1374. });
  1375. return self.cancelEvent(e);
  1376. }
  1377. else {
  1378. self.checkarea = 0;
  1379. }
  1380. };
  1381. if (cap.cantouch || self.opt.touchbehavior) {
  1382. self.onpreventclick = function(e) {
  1383. if (self.preventclick) {
  1384. self.preventclick.tg.onclick = self.preventclick.click;
  1385. self.preventclick = false;
  1386. return self.cancelEvent(e);
  1387. }
  1388. };
  1389. self.bind(self.win, "mousedown", self.ontouchstart); // control content dragging
  1390. self.onclick = (cap.isios) ? false : function(e) { // it needs to check IE11 ???
  1391. if (self.lastmouseup) {
  1392. self.lastmouseup = false;
  1393. return self.cancelEvent(e);
  1394. } else {
  1395. return true;
  1396. }
  1397. };
  1398. if (self.opt.grabcursorenabled && cap.cursorgrabvalue) {
  1399. self.css((self.ispage) ? self.doc : self.win, {
  1400. 'cursor': cap.cursorgrabvalue
  1401. });
  1402. self.css(self.rail, {
  1403. 'cursor': cap.cursorgrabvalue
  1404. });
  1405. }
  1406. } else {
  1407. var checkSelectionScroll = function(e) {
  1408. if (!self.selectiondrag) return;
  1409. if (e) {
  1410. var ww = self.win.outerHeight();
  1411. var df = (e.pageY - self.selectiondrag.top);
  1412. if (df > 0 && df < ww) df = 0;
  1413. if (df >= ww) df -= ww;
  1414. self.selectiondrag.df = df;
  1415. }
  1416. if (self.selectiondrag.df == 0) return;
  1417. var rt = -Math.floor(self.selectiondrag.df / 6) * 2;
  1418. self.doScrollBy(rt);
  1419. self.debounced("doselectionscroll", function() {
  1420. checkSelectionScroll();
  1421. }, 50);
  1422. };
  1423. if ("getSelection" in document) { // A grade - Major browsers
  1424. self.hasTextSelected = function() {
  1425. return (document.getSelection().rangeCount > 0);
  1426. };
  1427. } else if ("selection" in document) { //IE9-
  1428. self.hasTextSelected = function() {
  1429. return (document.selection.type != "None");
  1430. };
  1431. } else {
  1432. self.hasTextSelected = function() { // no support
  1433. return false;
  1434. };
  1435. }
  1436. self.onselectionstart = function(e) {
  1437. /* More testing - severe chrome issues
  1438. if (!self.haswrapper&&(e.which&&e.which==2)) { // fool browser to manage middle button scrolling
  1439. self.win.css({'overflow':'auto'});
  1440. setTimeout(function(){
  1441. self.win.css({'overflow':''});
  1442. },10);
  1443. return true;
  1444. }
  1445. */
  1446. if (self.ispage) return;
  1447. self.selectiondrag = self.win.offset();
  1448. };
  1449. self.onselectionend = function(e) {
  1450. self.selectiondrag = false;
  1451. };
  1452. self.onselectiondrag = function(e) {
  1453. if (!self.selectiondrag) return;
  1454. if (self.hasTextSelected()) self.debounced("selectionscroll", function() {
  1455. checkSelectionScroll(e);
  1456. }, 250);
  1457. };
  1458. }
  1459. if (cap.hasw3ctouch) { //IE11+
  1460. self.css(self.rail, {
  1461. 'touch-action': 'none'
  1462. });
  1463. self.css(self.cursor, {
  1464. 'touch-action': 'none'
  1465. });
  1466. self.bind(self.win, "pointerdown", self.ontouchstart);
  1467. self.bind(document, "pointerup", self.ontouchend);
  1468. self.bind(document, "pointermove", self.ontouchmove);
  1469. } else if (cap.hasmstouch) { //IE10
  1470. self.css(self.rail, {
  1471. '-ms-touch-action': 'none'
  1472. });
  1473. self.css(self.cursor, {
  1474. '-ms-touch-action': 'none'
  1475. });
  1476. self.bind(self.win, "MSPointerDown", self.ontouchstart);
  1477. self.bind(document, "MSPointerUp", self.ontouchend);
  1478. self.bind(document, "MSPointerMove", self.ontouchmove);
  1479. self.bind(self.cursor, "MSGestureHold", function(e) {
  1480. e.preventDefault();
  1481. });
  1482. self.bind(self.cursor, "contextmenu", function(e) {
  1483. e.preventDefault();
  1484. });
  1485. } else if (this.istouchcapable) { //desktop with screen touch enabled
  1486. self.bind(self.win, "touchstart", self.ontouchstart);
  1487. self.bind(document, "touchend", self.ontouchend);
  1488. self.bind(document, "touchcancel", self.ontouchend);
  1489. self.bind(document, "touchmove", self.ontouchmove);
  1490. }
  1491. if (self.opt.cursordragontouch || (!cap.cantouch && !self.opt.touchbehavior)) {
  1492. self.rail.css({
  1493. cursor: "default"
  1494. });
  1495. self.railh && self.railh.css({
  1496. cursor: "default"
  1497. });
  1498. self.jqbind(self.rail, "mouseenter", function() {
  1499. if (!self.ispage && !self.win.is(":visible")) return false;
  1500. if (self.canshowonmouseevent) self.showCursor();
  1501. self.rail.active = true;
  1502. });
  1503. self.jqbind(self.rail, "mouseleave", function() {
  1504. self.rail.active = false;
  1505. if (!self.rail.drag) self.hideCursor();
  1506. });
  1507. if (self.opt.sensitiverail) {
  1508. self.bind(self.rail, "click", function(e) {
  1509. self.doRailClick(e, false, false);
  1510. });
  1511. self.bind(self.rail, "dblclick", function(e) {
  1512. self.doRailClick(e, true, false);
  1513. });
  1514. self.bind(self.cursor, "click", function(e) {
  1515. self.cancelEvent(e);
  1516. });
  1517. self.bind(self.cursor, "dblclick", function(e) {
  1518. self.cancelEvent(e);
  1519. });
  1520. }
  1521. if (self.railh) {
  1522. self.jqbind(self.railh, "mouseenter", function() {
  1523. if (!self.ispage && !self.win.is(":visible")) return false;
  1524. if (self.canshowonmouseevent) self.showCursor();
  1525. self.rail.active = true;
  1526. });
  1527. self.jqbind(self.railh, "mouseleave", function() {
  1528. self.rail.active = false;
  1529. if (!self.rail.drag) self.hideCursor();
  1530. });
  1531. if (self.opt.sensitiverail) {
  1532. self.bind(self.railh, "click", function(e) {
  1533. self.doRailClick(e, false, true);
  1534. });
  1535. self.bind(self.railh, "dblclick", function(e) {
  1536. self.doRailClick(e, true, true);
  1537. });
  1538. self.bind(self.cursorh, "click", function(e) {
  1539. self.cancelEvent(e);
  1540. });
  1541. self.bind(self.cursorh, "dblclick", function(e) {
  1542. self.cancelEvent(e);
  1543. });
  1544. }
  1545. }
  1546. }
  1547. if(self.opt.cursordragontouch && (this.istouchcapable || cap.cantouch)) {
  1548. self.bind(self.cursor, "touchstart", self.ontouchstartCursor);
  1549. self.bind(self.cursor, "touchmove", self.ontouchmoveCursor);
  1550. self.bind(self.cursor, "touchend", self.ontouchendCursor);
  1551. self.cursorh && self.bind(self.cursorh, "touchstart", function(e) {
  1552. self.ontouchstartCursor(e, true);
  1553. });
  1554. self.cursorh && self.bind(self.cursorh, "touchmove", self.ontouchmoveCursor);
  1555. self.cursorh && self.bind(self.cursorh, "touchend", self.ontouchendCursor);
  1556. }
  1557. if (!cap.cantouch && !self.opt.touchbehavior) {
  1558. self.bind((cap.hasmousecapture) ? self.win : document, "mouseup", self.onmouseup);
  1559. self.bind(document, "mousemove", self.onmousemove);
  1560. if (self.onclick) self.bind(document, "click", self.onclick);
  1561. self.bind(self.cursor, "mousedown", self.onmousedown);
  1562. self.bind(self.cursor, "mouseup", self.onmouseup);
  1563. if (self.railh) {
  1564. self.bind(self.cursorh, "mousedown", function(e) {
  1565. self.onmousedown(e, true);
  1566. });
  1567. self.bind(self.cursorh, "mouseup", self.onmouseup);
  1568. }
  1569. if (!self.ispage && self.opt.enablescrollonselection) {
  1570. self.bind(self.win[0], "mousedown", self.onselectionstart);
  1571. self.bind(document, "mouseup", self.onselectionend);
  1572. self.bind(self.cursor, "mouseup", self.onselectionend);
  1573. if (self.cursorh) self.bind(self.cursorh, "mouseup", self.onselectionend);
  1574. self.bind(document, "mousemove", self.onselectiondrag);
  1575. }
  1576. if (self.zoom) {
  1577. self.jqbind(self.zoom, "mouseenter", function() {
  1578. if (self.canshowonmouseevent) self.showCursor();
  1579. self.rail.active = true;
  1580. });
  1581. self.jqbind(self.zoom, "mouseleave", function() {
  1582. self.rail.active = false;
  1583. if (!self.rail.drag) self.hideCursor();
  1584. });
  1585. }
  1586. } else {
  1587. self.bind((cap.hasmousecapture) ? self.win : document, "mouseup", self.ontouchend);
  1588. self.bind(document, "mousemove", self.ontouchmove);
  1589. if (self.onclick) self.bind(document, "click", self.onclick);
  1590. if (self.opt.cursordragontouch) {
  1591. self.bind(self.cursor, "mousedown", self.onmousedown);
  1592. self.bind(self.cursor, "mouseup", self.onmouseup);
  1593. //self.bind(self.cursor, "mousemove", self.onmousemove);
  1594. self.cursorh && self.bind(self.cursorh, "mousedown", function(e) {
  1595. self.onmousedown(e, true);
  1596. });
  1597. //self.cursorh && self.bind(self.cursorh, "mousemove", self.onmousemove);
  1598. self.cursorh && self.bind(self.cursorh, "mouseup", self.onmouseup);
  1599. } else {
  1600. self.bind(self.rail, "mousedown", function(e){e.preventDefault();}); // prevent text selection
  1601. self.railh&&self.bind(self.railh, "mousedown", function(e){e.preventDefault();});
  1602. }
  1603. }
  1604. if (self.opt.enablemousewheel) {
  1605. if (!self.isiframe) self.mousewheel((cap.isie && self.ispage) ? document : self.win , self.onmousewheel);
  1606. self.mousewheel(self.rail, self.onmousewheel);
  1607. if (self.railh) self.mousewheel(self.railh, self.onmousewheelhr);
  1608. }
  1609. if (!self.ispage && !cap.cantouch && !(/HTML|^BODY/.test(self.win[0].nodeName))) {
  1610. if (!self.win.attr("tabindex")) self.win.attr({
  1611. "tabindex": tabindexcounter++
  1612. });
  1613. self.jqbind(self.win, "focus", function(e) {
  1614. domfocus = (self.getTarget(e)).id || true;
  1615. self.hasfocus = true;
  1616. if (self.canshowonmouseevent) self.noticeCursor();
  1617. });
  1618. self.jqbind(self.win, "blur", function(e) {
  1619. domfocus = false;
  1620. self.hasfocus = false;
  1621. });
  1622. self.jqbind(self.win, "mouseenter", function(e) {
  1623. mousefocus = (self.getTarget(e)).id || true;
  1624. self.hasmousefocus = true;
  1625. if (self.canshowonmouseevent) self.noticeCursor();
  1626. });
  1627. self.jqbind(self.win, "mouseleave", function() {
  1628. mousefocus = false;
  1629. self.hasmousefocus = false;
  1630. if (!self.rail.drag) self.hideCursor();
  1631. });
  1632. }
  1633. } // !ie9mobile
  1634. //Thanks to http://www.quirksmode.org !!
  1635. self.onkeypress = function(e) {
  1636. if (self.railslocked && self.page.maxh == 0) return true;
  1637. e = (e) ? e : window.e;
  1638. var tg = self.getTarget(e);
  1639. if (tg && /INPUT|TEXTAREA|SELECT|OPTION/.test(tg.nodeName)) {
  1640. var tp = tg.getAttribute('type') || tg.type || false;
  1641. if ((!tp) || !(/submit|button|cancel/i.tp)) return true;
  1642. }
  1643. if ($(tg).attr('contenteditable')) return true;
  1644. if (self.hasfocus || (self.hasmousefocus && !domfocus) || (self.ispage && !domfocus && !mousefocus)) {
  1645. var key = e.keyCode;
  1646. if (self.railslocked && key != 27) return self.cancelEvent(e);
  1647. var ctrl = e.ctrlKey || false;
  1648. var shift = e.shiftKey || false;
  1649. var ret = false;
  1650. switch (key) {
  1651. case 38:
  1652. case 63233: //safari
  1653. self.doScrollBy(24 * 3);
  1654. ret = true;
  1655. break;
  1656. case 40:
  1657. case 63235: //safari
  1658. self.doScrollBy(-24 * 3);
  1659. ret = true;
  1660. break;
  1661. case 37:
  1662. case 63232: //safari
  1663. if (self.railh) {
  1664. (ctrl) ? self.doScrollLeft(0): self.doScrollLeftBy(24 * 3);
  1665. ret = true;
  1666. }
  1667. break;
  1668. case 39:
  1669. case 63234: //safari
  1670. if (self.railh) {
  1671. (ctrl) ? self.doScrollLeft(self.page.maxw): self.doScrollLeftBy(-24 * 3);
  1672. ret = true;
  1673. }
  1674. break;
  1675. case 33:
  1676. case 63276: // safari
  1677. self.doScrollBy(self.view.h);
  1678. ret = true;
  1679. break;
  1680. case 34:
  1681. case 63277: // safari
  1682. self.doScrollBy(-self.view.h);
  1683. ret = true;
  1684. break;
  1685. case 36:
  1686. case 63273: // safari
  1687. (self.railh && ctrl) ? self.doScrollPos(0, 0): self.doScrollTo(0);
  1688. ret = true;
  1689. break;
  1690. case 35:
  1691. case 63275: // safari
  1692. (self.railh && ctrl) ? self.doScrollPos(self.page.maxw, self.page.maxh): self.doScrollTo(self.page.maxh);
  1693. ret = true;
  1694. break;
  1695. case 32:
  1696. if (self.opt.spacebarenabled) {
  1697. (shift) ? self.doScrollBy(self.view.h): self.doScrollBy(-self.view.h);
  1698. ret = true;
  1699. }
  1700. break;
  1701. case 27: // ESC
  1702. if (self.zoomactive) {
  1703. self.doZoom();
  1704. ret = true;
  1705. }
  1706. break;
  1707. }
  1708. if (ret) return self.cancelEvent(e);
  1709. }
  1710. };
  1711. if (self.opt.enablekeyboard) self.bind(document, (cap.isopera && !cap.isopera12) ? "keypress" : "keydown", self.onkeypress);
  1712. self.bind(document, "keydown", function(e) {
  1713. var ctrl = e.ctrlKey || false;
  1714. if (ctrl) self.wheelprevented = true;
  1715. });
  1716. self.bind(document, "keyup", function(e) {
  1717. var ctrl = e.ctrlKey || false;
  1718. if (!ctrl) self.wheelprevented = false;
  1719. });
  1720. self.bind(window,"blur",function(e){
  1721. self.wheelprevented = false;
  1722. });
  1723. self.bind(window, 'resize', self.lazyResize);
  1724. self.bind(window, 'orientationchange', self.lazyResize);
  1725. self.bind(window, "load", self.lazyResize);
  1726. if (cap.ischrome && !self.ispage && !self.haswrapper) { //chrome void scrollbar bug - it persists in version 26
  1727. var tmp = self.win.attr("style");
  1728. var ww = parseFloat(self.win.css("width")) + 1;
  1729. self.win.css('width', ww);
  1730. self.synched("chromefix", function() {
  1731. self.win.attr("style", tmp);
  1732. });
  1733. }
  1734. // Trying a cross-browser implementation - good luck!
  1735. self.onAttributeChange = function(e) {
  1736. self.lazyResize(self.isieold ? 250 : 30);
  1737. };
  1738. if ((!self.isie11) && (ClsMutationObserver !== false)) { // IE11 crashes #568
  1739. self.observerbody = new ClsMutationObserver(function(mutations) {
  1740. mutations.forEach(function(mut){
  1741. if (mut.type=="attributes") {
  1742. return ($("body").hasClass("modal-open") && $("body").hasClass("modal-dialog") && !$.contains($('.modal-dialog')[0],self.doc[0])) ? self.hide() : self.show(); // Support for Bootstrap modal; Added check if the nice scroll element is inside a modal
  1743. }
  1744. });
  1745. // if (document.body.scrollHeight!=self.page.maxh) return self.lazyResize(30);
  1746. if (self.me.clientWidth!=self.page.width || self.me.clientHeight!=self.page.height) return self.lazyResize(30);
  1747. });
  1748. self.observerbody.observe(document.body, {
  1749. childList: true,
  1750. subtree: true,
  1751. characterData: false,
  1752. attributes: true,
  1753. attributeFilter: ['class']
  1754. });
  1755. }
  1756. if (!self.ispage && !self.haswrapper) {
  1757. // redesigned MutationObserver for Chrome18+/Firefox14+/iOS6+ with support for: remove div, add/remove content
  1758. if (ClsMutationObserver !== false) {
  1759. self.observer = new ClsMutationObserver(function(mutations) {
  1760. mutations.forEach(self.onAttributeChange);
  1761. });
  1762. self.observer.observe(self.win[0], {
  1763. childList: true,
  1764. characterData: false,
  1765. attributes: true,
  1766. subtree: false
  1767. });
  1768. self.observerremover = new ClsMutationObserver(function(mutations) {
  1769. mutations.forEach(function(mo) {
  1770. if (mo.removedNodes.length > 0) {
  1771. for (var dd in mo.removedNodes) {
  1772. if (!!self && (mo.removedNodes[dd] == self.win[0])) return self.remove();
  1773. }
  1774. }
  1775. });
  1776. });
  1777. self.observerremover.observe(self.win[0].parentNode, {
  1778. childList: true,
  1779. characterData: false,
  1780. attributes: false,
  1781. subtree: false
  1782. });
  1783. } else {
  1784. self.bind(self.win, (cap.isie && !cap.isie9) ? "propertychange" : "DOMAttrModified", self.onAttributeChange);
  1785. if (cap.isie9) self.win[0].attachEvent("onpropertychange", self.onAttributeChange); //IE9 DOMAttrModified bug
  1786. self.bind(self.win, "DOMNodeRemoved", function(e) {
  1787. if (e.target == self.win[0]) self.remove();
  1788. });
  1789. }
  1790. }
  1791. //
  1792. if (!self.ispage && self.opt.boxzoom) self.bind(window, "resize", self.resizeZoom);
  1793. if (self.istextarea) {
  1794. self.bind(self.win, "keydown", self.lazyResize);
  1795. self.bind(self.win, "mouseup", self.lazyResize);
  1796. }
  1797. // self.checkrtlmode = true;
  1798. self.lazyResize(30);
  1799. }
  1800. if (this.doc[0].nodeName == 'IFRAME') {
  1801. var oniframeload = function() {
  1802. self.iframexd = false;
  1803. var doc;
  1804. try {
  1805. doc = 'contentDocument' in this ? this.contentDocument : this.contentWindow.document;
  1806. var a = doc.domain;
  1807. } catch (e) {
  1808. self.iframexd = true;
  1809. doc = false;
  1810. }
  1811. if (self.iframexd) {
  1812. if ("console" in window) console.log('NiceScroll error: policy restriced iframe');
  1813. return true; //cross-domain - I can't manage this
  1814. }
  1815. self.forcescreen = true;
  1816. if (self.isiframe) {
  1817. self.iframe = {
  1818. "doc": $(doc),
  1819. "html": self.doc.contents().find('html')[0],
  1820. "body": self.doc.contents().find('body')[0]
  1821. };
  1822. self.getContentSize = function() {
  1823. return {
  1824. w: Math.max(self.iframe.html.scrollWidth, self.iframe.body.scrollWidth),
  1825. h: Math.max(self.iframe.html.scrollHeight, self.iframe.body.scrollHeight)
  1826. };
  1827. };
  1828. self.docscroll = $(self.iframe.body); //$(this.contentWindow);
  1829. }
  1830. if (!cap.isios && self.opt.iframeautoresize && !self.isiframe) {
  1831. self.win.scrollTop(0); // reset position
  1832. self.doc.height(""); //reset height to fix browser bug
  1833. var hh = Math.max(doc.getElementsByTagName('html')[0].scrollHeight, doc.body.scrollHeight);
  1834. self.doc.height(hh);
  1835. }
  1836. self.lazyResize(30);
  1837. if (cap.isie7) self.css($(self.iframe.html), _scrollyhidden);
  1838. self.css($(self.iframe.body), _scrollyhidden);
  1839. if (cap.isios && self.haswrapper) {
  1840. self.css($(doc.body), {
  1841. '-webkit-transform': 'translate3d(0,0,0)'
  1842. }); // avoid iFrame content clipping - thanks to http://blog.derraab.com/2012/04/02/avoid-iframe-content-clipping-with-css-transform-on-ios/
  1843. }
  1844. if ('contentWindow' in this) {
  1845. self.bind(this.contentWindow, "scroll", self.onscroll); //IE8 & minor
  1846. } else {
  1847. self.bind(doc, "scroll", self.onscroll);
  1848. }
  1849. if (self.opt.enablemousewheel) {
  1850. self.mousewheel(doc, self.onmousewheel);
  1851. }
  1852. if (self.opt.enablekeyboard) self.bind(doc, (cap.isopera) ? "keypress" : "keydown", self.onkeypress);
  1853. if (cap.cantouch || self.opt.touchbehavior) {
  1854. self.bind(doc, "mousedown", self.ontouchstart);
  1855. self.bind(doc, "mousemove", function(e) {
  1856. return self.ontouchmove(e, true);
  1857. });
  1858. if (self.opt.grabcursorenabled && cap.cursorgrabvalue) self.css($(doc.body), {
  1859. 'cursor': cap.cursorgrabvalue
  1860. });
  1861. }
  1862. self.bind(doc, "mouseup", self.ontouchend);
  1863. if (self.zoom) {
  1864. if (self.opt.dblclickzoom) self.bind(doc, 'dblclick', self.doZoom);
  1865. if (self.ongesturezoom) self.bind(doc, "gestureend", self.ongesturezoom);
  1866. }
  1867. };
  1868. if (this.doc[0].readyState && this.doc[0].readyState == "complete") {
  1869. setTimeout(function() {
  1870. oniframeload.call(self.doc[0], false);
  1871. }, 500);
  1872. }
  1873. self.bind(this.doc, "load", oniframeload);
  1874. }
  1875. };
  1876. this.showCursor = function(py, px) {
  1877. if (self.cursortimeout) {
  1878. clearTimeout(self.cursortimeout);
  1879. self.cursortimeout = 0;
  1880. }
  1881. if (!self.rail) return;
  1882. if (self.autohidedom) {
  1883. self.autohidedom.stop().css({
  1884. opacity: self.opt.cursoropacitymax
  1885. });
  1886. self.cursoractive = true;
  1887. }
  1888. if (!self.rail.drag || self.rail.drag.pt != 1) {
  1889. if (py !== undefined && py !== false) {
  1890. self.scroll.y = Math.round(py * 1 / self.scrollratio.y);
  1891. }
  1892. if (px !== undefined) {
  1893. self.scroll.x = Math.round(px * 1 / self.scrollratio.x);
  1894. }
  1895. }
  1896. self.cursor.css({
  1897. height: self.cursorheight,
  1898. top: self.scroll.y
  1899. });
  1900. if (self.cursorh) {
  1901. var lx = (self.hasreversehr) ? self.scrollvaluemaxw-self.scroll.x : self.scroll.x;
  1902. (!self.rail.align && self.rail.visibility) ? self.cursorh.css({
  1903. width: self.cursorwidth,
  1904. left: lx + self.rail.width
  1905. }): self.cursorh.css({
  1906. width: self.cursorwidth,
  1907. left: lx
  1908. });
  1909. self.cursoractive = true;
  1910. }
  1911. if (self.zoom) self.zoom.stop().css({
  1912. opacity: self.opt.cursoropacitymax
  1913. });
  1914. };
  1915. this.hideCursor = function(tm) {
  1916. if (self.cursortimeout) return;
  1917. if (!self.rail) return;
  1918. if (!self.autohidedom) return;
  1919. if (self.hasmousefocus && self.opt.autohidemode == "leave") return;
  1920. self.cursortimeout = setTimeout(function() {
  1921. if (!self.rail.active || !self.showonmouseevent) {
  1922. self.autohidedom.stop().animate({
  1923. opacity: self.opt.cursoropacitymin
  1924. });
  1925. if (self.zoom) self.zoom.stop().animate({
  1926. opacity: self.opt.cursoropacitymin
  1927. });
  1928. self.cursoractive = false;
  1929. }
  1930. self.cursortimeout = 0;
  1931. }, tm || self.opt.hidecursordelay);
  1932. };
  1933. this.noticeCursor = function(tm, py, px) {
  1934. self.showCursor(py, px);
  1935. if (!self.rail.active) self.hideCursor(tm);
  1936. };
  1937. this.getContentSize =
  1938. (self.ispage) ?
  1939. function() {
  1940. return {
  1941. w: Math.max(document.body.scrollWidth, document.documentElement.scrollWidth),
  1942. h: Math.max(document.body.scrollHeight, document.documentElement.scrollHeight)
  1943. };
  1944. } : (self.haswrapper) ?
  1945. function() {
  1946. return {
  1947. w: self.doc.outerWidth() + parseInt(self.win.css('paddingLeft')) + parseInt(self.win.css('paddingRight')),
  1948. h: self.doc.outerHeight() + parseInt(self.win.css('paddingTop')) + parseInt(self.win.css('paddingBottom'))
  1949. };
  1950. } : function() {
  1951. return {
  1952. w: self.docscroll[0].scrollWidth,
  1953. h: self.docscroll[0].scrollHeight
  1954. };
  1955. };
  1956. this.onResize = function(e, page) {
  1957. if (!self || !self.win) return false;
  1958. if (!self.haswrapper && !self.ispage) {
  1959. if (self.win.css('display') == 'none') {
  1960. if (self.visibility) self.hideRail().hideRailHr();
  1961. return false;
  1962. } else {
  1963. if (!self.hidden && !self.visibility) self.showRail().showRailHr();
  1964. }
  1965. }
  1966. var premaxh = self.page.maxh;
  1967. var premaxw = self.page.maxw;
  1968. var preview = {
  1969. h: self.view.h,
  1970. w: self.view.w
  1971. };
  1972. self.view = {
  1973. w: (self.ispage) ? self.win.width() : parseInt(self.win[0].clientWidth),
  1974. h: (self.ispage) ? self.win.height() : parseInt(self.win[0].clientHeight)
  1975. };
  1976. self.page = (page) ? page : self.getContentSize();
  1977. self.page.maxh = Math.max(0, self.page.h - self.view.h);
  1978. self.page.maxw = Math.max(0, self.page.w - self.view.w);
  1979. if ((self.page.maxh == premaxh) && (self.page.maxw == premaxw) && (self.view.w == preview.w) && (self.view.h == preview.h)) {
  1980. // test position
  1981. if (!self.ispage) {
  1982. var pos = self.win.offset();
  1983. if (self.lastposition) {
  1984. var lst = self.lastposition;
  1985. if ((lst.top == pos.top) && (lst.left == pos.left)) return self; //nothing to do
  1986. }
  1987. self.lastposition = pos;
  1988. } else {
  1989. return self; //nothing to do
  1990. }
  1991. }
  1992. if (self.page.maxh == 0) {
  1993. self.hideRail();
  1994. self.scrollvaluemax = 0;
  1995. self.scroll.y = 0;
  1996. self.scrollratio.y = 0;
  1997. self.cursorheight = 0;
  1998. self.setScrollTop(0);
  1999. if (self.rail) self.rail.scrollable = false;
  2000. } else {
  2001. self.page.maxh -= (self.opt.railpadding.top + self.opt.railpadding.bottom); //**
  2002. self.rail.scrollable = true;
  2003. }
  2004. if (self.page.maxw == 0) {
  2005. self.hideRailHr();
  2006. self.scrollvaluemaxw = 0;
  2007. self.scroll.x = 0;
  2008. self.scrollratio.x = 0;
  2009. self.cursorwidth = 0;
  2010. self.setScrollLeft(0);
  2011. if (self.railh) {
  2012. self.railh.scrollable = false;
  2013. }
  2014. } else {
  2015. self.page.maxw -= (self.opt.railpadding.left + self.opt.railpadding.right); //**
  2016. if (self.railh) self.railh.scrollable = (self.opt.horizrailenabled);
  2017. }
  2018. self.railslocked = (self.locked) || ((self.page.maxh == 0) && (self.page.maxw == 0));
  2019. if (self.railslocked) {
  2020. if (!self.ispage) self.updateScrollBar(self.view);
  2021. return false;
  2022. }
  2023. if (!self.hidden && !self.visibility) {
  2024. self.showRail().showRailHr();
  2025. }
  2026. else if (self.railh && (!self.hidden && !self.railh.visibility)) self.showRailHr();
  2027. if (self.istextarea && self.win.css('resize') && self.win.css('resize') != 'none') self.view.h -= 20;
  2028. self.cursorheight = Math.min(self.view.h, Math.round(self.view.h * (self.view.h / self.page.h)));
  2029. self.cursorheight = (self.opt.cursorfixedheight) ? self.opt.cursorfixedheight : Math.max(self.opt.cursorminheight, self.cursorheight);
  2030. self.cursorwidth = Math.min(self.view.w, Math.round(self.view.w * (self.view.w / self.page.w)));
  2031. self.cursorwidth = (self.opt.cursorfixedheight) ? self.opt.cursorfixedheight : Math.max(self.opt.cursorminheight, self.cursorwidth);
  2032. self.scrollvaluemax = self.view.h - self.cursorheight - self.cursor.hborder - (self.opt.railpadding.top + self.opt.railpadding.bottom); //**
  2033. if (self.railh) {
  2034. self.railh.width = (self.page.maxh > 0) ? (self.view.w - self.rail.width) : self.view.w;
  2035. self.scrollvaluemaxw = self.railh.width - self.cursorwidth - self.cursorh.wborder - (self.opt.railpadding.left + self.opt.railpadding.right); //**
  2036. }
  2037. /*
  2038. if (self.checkrtlmode&&self.railh) {
  2039. self.checkrtlmode = false;
  2040. if (self.opt.rtlmode&&self.scroll.x==0) self.setScrollLeft(self.page.maxw);
  2041. }
  2042. */
  2043. if (!self.ispage) self.updateScrollBar(self.view);
  2044. self.scrollratio = {
  2045. x: (self.page.maxw / self.scrollvaluemaxw),
  2046. y: (self.page.maxh / self.scrollvaluemax)
  2047. };
  2048. var sy = self.getScrollTop();
  2049. if (sy > self.page.maxh) {
  2050. self.doScrollTop(self.page.maxh);
  2051. } else {
  2052. self.scroll.y = Math.round(self.getScrollTop() * (1 / self.scrollratio.y));
  2053. self.scroll.x = Math.round(self.getScrollLeft() * (1 / self.scrollratio.x));
  2054. if (self.cursoractive) self.noticeCursor();
  2055. }
  2056. if (self.scroll.y && (self.getScrollTop() == 0)) self.doScrollTo(Math.floor(self.scroll.y * self.scrollratio.y));
  2057. return self;
  2058. };
  2059. this.resize = self.onResize;
  2060. this.hlazyresize = 0;
  2061. this.lazyResize = function(tm) { // event debounce
  2062. /*
  2063. tm = (isNaN(tm)) ? 30 : tm;
  2064. self.debounced('resize', self.resize, tm);
  2065. */
  2066. // if (!self.haswrapper&&self.opt.autohidemode!==false) self.hide();
  2067. if (!self.haswrapper) self.hide();
  2068. if (self.hlazyresize) clearTimeout(self.hlazyresize);
  2069. self.hlazyresize = setTimeout(function(){
  2070. self && self.show().resize();
  2071. },240);
  2072. return self;
  2073. };
  2074. // modified by MDN https://developer.mozilla.org/en-US/docs/DOM/Mozilla_event_reference/wheel
  2075. function _modernWheelEvent(dom, name, fn, bubble) {
  2076. self._bind(dom, name, function(e) {
  2077. var e = (e) ? e : window.event;
  2078. var event = {
  2079. original: e,
  2080. target: e.target || e.srcElement,
  2081. type: "wheel",
  2082. deltaMode: e.type == "MozMousePixelScroll" ? 0 : 1,
  2083. deltaX: 0,
  2084. deltaZ: 0,
  2085. preventDefault: function() {
  2086. e.preventDefault ? e.preventDefault() : e.returnValue = false;
  2087. return false;
  2088. },
  2089. stopImmediatePropagation: function() {
  2090. (e.stopImmediatePropagation) ? e.stopImmediatePropagation(): e.cancelBubble = true;
  2091. }
  2092. };
  2093. if (name == "mousewheel") {
  2094. e.wheelDeltaX && (event.deltaX = -1 / 40 * e.wheelDeltaX);
  2095. e.wheelDeltaY && (event.deltaY = -1 / 40 * e.wheelDeltaY);
  2096. !event.deltaY && !event.deltaX && (event.deltaY = -1 / 40 * e.wheelDelta);
  2097. } else {
  2098. event.deltaY = e.detail;
  2099. }
  2100. return fn.call(dom, event);
  2101. }, bubble);
  2102. }
  2103. this.jqbind = function(dom, name, fn) { // use jquery bind for non-native events (mouseenter/mouseleave)
  2104. self.events.push({
  2105. e: dom,
  2106. n: name,
  2107. f: fn,
  2108. q: true
  2109. });
  2110. $(dom).bind(name, fn);
  2111. };
  2112. this.mousewheel = function(dom, fn, bubble) { // bind mousewheel
  2113. var el = ("jquery" in dom) ? dom[0] : dom;
  2114. if ("onwheel" in document.createElement("div")) { // Modern browsers support "wheel"
  2115. self._bind(el, "wheel", fn, bubble || false);
  2116. } else {
  2117. var wname = (document.onmousewheel !== undefined) ? "mousewheel" : "DOMMouseScroll"; // older Webkit+IE support or older Firefox
  2118. _modernWheelEvent(el, wname, fn, bubble || false);
  2119. if (wname == "DOMMouseScroll") _modernWheelEvent(el, "MozMousePixelScroll", fn, bubble || false); // Firefox legacy
  2120. }
  2121. };
  2122. if (cap.haseventlistener) { // W3C standard event model
  2123. this.bind = function(dom, name, fn, bubble) { // W3C
  2124. var el = ("jquery" in dom) ? dom[0] : dom;
  2125. self._bind(el, name, fn, bubble || false);
  2126. };
  2127. this._bind = function(el, name, fn, bubble) { // primitive bind
  2128. self.events.push({
  2129. e: el,
  2130. n: name,
  2131. f: fn,
  2132. b: bubble,
  2133. q: false
  2134. });
  2135. el.addEventListener(name, fn, bubble || false);
  2136. };
  2137. this.cancelEvent = function(e) {
  2138. if (!e) return false;
  2139. var e = (e.original) ? e.original : e;
  2140. if (e.cancelable) e.preventDefault();
  2141. e.stopPropagation();
  2142. if (e.preventManipulation) e.preventManipulation(); //IE10
  2143. return false;
  2144. };
  2145. this.stopPropagation = function(e) {
  2146. if (!e) return false;
  2147. var e = (e.original) ? e.original : e;
  2148. e.stopPropagation();
  2149. return false;
  2150. };
  2151. this._unbind = function(el, name, fn, bub) { // primitive unbind
  2152. el.removeEventListener(name, fn, bub);
  2153. };
  2154. } else { // old IE model
  2155. this.bind = function(dom, name, fn, bubble) { // legacy IE
  2156. var el = ("jquery" in dom) ? dom[0] : dom;
  2157. self._bind(el, name, function(e) {
  2158. e = e || window.event || false;
  2159. if (e && e.srcElement) {
  2160. e.target = e.srcElement;
  2161. }
  2162. if (!("pageY" in e)) {
  2163. e.pageX = e.clientX + document.documentElement.scrollLeft;
  2164. e.pageY = e.clientY + document.documentElement.scrollTop;
  2165. }
  2166. return ((fn.call(el, e) === false) || bubble === false) ? self.cancelEvent(e) : true;
  2167. });
  2168. };
  2169. this._bind = function(el, name, fn, bubble) { // primitive bind
  2170. self.events.push({
  2171. e: el,
  2172. n: name,
  2173. f: fn,
  2174. b: bubble,
  2175. q: false
  2176. });
  2177. if (el.attachEvent) {
  2178. el.attachEvent("on" + name, fn);
  2179. } else {
  2180. el["on" + name] = fn;
  2181. }
  2182. };
  2183. // Thanks to http://www.switchonthecode.com !!
  2184. this.cancelEvent = function(e) {
  2185. var e = window.event || false;
  2186. if (!e) return false;
  2187. e.cancelBubble = true;
  2188. e.cancel = true;
  2189. e.returnValue = false;
  2190. return false;
  2191. };
  2192. this.stopPropagation = function(e) {
  2193. var e = window.event || false;
  2194. if (!e) return false;
  2195. e.cancelBubble = true;
  2196. return false;
  2197. };
  2198. this._unbind = function(el, name, fn, bub) { // primitive unbind IE old
  2199. if (el.detachEvent) {
  2200. el.detachEvent('on' + name, fn);
  2201. } else {
  2202. el['on' + name] = false;
  2203. }
  2204. };
  2205. }
  2206. this.unbindAll = function() {
  2207. for (var a = 0; a < self.events.length; a++) {
  2208. var r = self.events[a];
  2209. (r.q) ? r.e.unbind(r.n, r.f): self._unbind(r.e, r.n, r.f, r.b);
  2210. }
  2211. };
  2212. this.showRail = function() {
  2213. if ((self.page.maxh != 0) && (self.ispage || self.win.css('display') != 'none')) {
  2214. self.visibility = true;
  2215. self.rail.visibility = true;
  2216. self.rail.css('display', 'block');
  2217. }
  2218. return self;
  2219. };
  2220. this.showRailHr = function() {
  2221. if (!self.railh) return self;
  2222. if ((self.page.maxw != 0) && (self.ispage || self.win.css('display') != 'none')) {
  2223. self.railh.visibility = true;
  2224. self.railh.css('display', 'block');
  2225. }
  2226. return self;
  2227. };
  2228. this.hideRail = function() {
  2229. self.visibility = false;
  2230. self.rail.visibility = false;
  2231. self.rail.css('display', 'none');
  2232. return self;
  2233. };
  2234. this.hideRailHr = function() {
  2235. if (!self.railh) return self;
  2236. self.railh.visibility = false;
  2237. self.railh.css('display', 'none');
  2238. return self;
  2239. };
  2240. this.show = function() {
  2241. self.hidden = false;
  2242. self.railslocked = false;
  2243. return self.showRail().showRailHr();
  2244. };
  2245. this.hide = function() {
  2246. self.hidden = true;
  2247. self.railslocked = true;
  2248. return self.hideRail().hideRailHr();
  2249. };
  2250. this.toggle = function() {
  2251. return (self.hidden) ? self.show() : self.hide();
  2252. };
  2253. this.remove = function() {
  2254. self.stop();
  2255. if (self.cursortimeout) clearTimeout(self.cursortimeout);
  2256. // if (self.debouncedelayed) clearTimeout(self.debouncedelayed);
  2257. for(var n in self.delaylist) if (self.delaylist[n]) clearAnimationFrame(self.delaylist[n].h);
  2258. self.doZoomOut();
  2259. self.unbindAll();
  2260. if (cap.isie9) self.win[0].detachEvent("onpropertychange", self.onAttributeChange); //IE9 DOMAttrModified bug
  2261. if (self.observer !== false) self.observer.disconnect();
  2262. if (self.observerremover !== false) self.observerremover.disconnect();
  2263. if (self.observerbody !== false) self.observerbody.disconnect();
  2264. self.events = null;
  2265. if (self.cursor) {
  2266. self.cursor.remove();
  2267. }
  2268. if (self.cursorh) {
  2269. self.cursorh.remove();
  2270. }
  2271. if (self.rail) {
  2272. self.rail.remove();
  2273. }
  2274. if (self.railh) {
  2275. self.railh.remove();
  2276. }
  2277. if (self.zoom) {
  2278. self.zoom.remove();
  2279. }
  2280. for (var a = 0; a < self.saved.css.length; a++) {
  2281. var d = self.saved.css[a];
  2282. d[0].css(d[1], (d[2] === undefined) ? '' : d[2]);
  2283. }
  2284. self.saved = false;
  2285. self.me.data('__nicescroll', ''); //erase all traces
  2286. // memory leak fixed by GianlucaGuarini - thanks a lot!
  2287. // remove the current nicescroll from the $.nicescroll array & normalize array
  2288. var lst = $.nicescroll;
  2289. lst.each(function(i) {
  2290. if (!this) return;
  2291. if (this.id === self.id) {
  2292. delete lst[i];
  2293. for (var b = ++i; b < lst.length; b++, i++) lst[i] = lst[b];
  2294. lst.length--;
  2295. if (lst.length) delete lst[lst.length];
  2296. }
  2297. });
  2298. for (var i in self) {
  2299. self[i] = null;
  2300. delete self[i];
  2301. }
  2302. self = null;
  2303. };
  2304. this.scrollstart = function(fn) {
  2305. this.onscrollstart = fn;
  2306. return self;
  2307. };
  2308. this.scrollend = function(fn) {
  2309. this.onscrollend = fn;
  2310. return self;
  2311. };
  2312. this.scrollcancel = function(fn) {
  2313. this.onscrollcancel = fn;
  2314. return self;
  2315. };
  2316. this.zoomin = function(fn) {
  2317. this.onzoomin = fn;
  2318. return self;
  2319. };
  2320. this.zoomout = function(fn) {
  2321. this.onzoomout = fn;
  2322. return self;
  2323. };
  2324. this.isScrollable = function(e) {
  2325. var dom = (e.target) ? e.target : e;
  2326. if (dom.nodeName == 'OPTION') return true;
  2327. while (dom && (dom.nodeType == 1) && (dom !== this.me[0]) && !(/^BODY|HTML/.test(dom.nodeName))) {
  2328. var dd = $(dom);
  2329. var ov = dd.css('overflowY') || dd.css('overflowX') || dd.css('overflow') || '';
  2330. if (/scroll|auto/.test(ov)) return (dom.clientHeight != dom.scrollHeight);
  2331. dom = (dom.parentNode) ? dom.parentNode : false;
  2332. }
  2333. return false;
  2334. };
  2335. this.getViewport = function(me) {
  2336. var dom = (me && me.parentNode) ? me.parentNode : false;
  2337. while (dom && (dom.nodeType == 1) && !(/^BODY|HTML/.test(dom.nodeName))) {
  2338. var dd = $(dom);
  2339. if (/fixed|absolute/.test(dd.css("position"))) return dd;
  2340. var ov = dd.css('overflowY') || dd.css('overflowX') || dd.css('overflow') || '';
  2341. if ((/scroll|auto/.test(ov)) && (dom.clientHeight != dom.scrollHeight)) return dd;
  2342. if (dd.getNiceScroll().length > 0) return dd;
  2343. dom = (dom.parentNode) ? dom.parentNode : false;
  2344. }
  2345. return false; //(dom) ? $(dom) : false;
  2346. };
  2347. this.triggerScrollEnd = function() {
  2348. if (!self.onscrollend) return;
  2349. var px = self.getScrollLeft();
  2350. var py = self.getScrollTop();
  2351. var info = {
  2352. type: "scrollend",
  2353. current: {
  2354. x: px,
  2355. y: py
  2356. },
  2357. end: {
  2358. x: px,
  2359. y: py
  2360. }
  2361. };
  2362. self.onscrollend.call(self, info);
  2363. };
  2364. function execScrollWheel(e, hr, chkscroll) {
  2365. var px, py;
  2366. if (e.deltaMode == 0) { // PIXEL
  2367. px = -Math.floor(e.deltaX * (self.opt.mousescrollstep / (18 * 3)));
  2368. py = -Math.floor(e.deltaY * (self.opt.mousescrollstep / (18 * 3)));
  2369. } else if (e.deltaMode == 1) { // LINE
  2370. px = -Math.floor(e.deltaX * self.opt.mousescrollstep);
  2371. py = -Math.floor(e.deltaY * self.opt.mousescrollstep);
  2372. }
  2373. if (hr && self.opt.oneaxismousemode && (px == 0) && py) { // classic vertical-only mousewheel + browser with x/y support
  2374. px = py;
  2375. py = 0;
  2376. if (chkscroll) {
  2377. var hrend = (px < 0) ? (self.getScrollLeft() >= self.page.maxw) : (self.getScrollLeft() <= 0);
  2378. if (hrend) { // preserve vertical scrolling
  2379. py = px;
  2380. px = 0;
  2381. }
  2382. }
  2383. }
  2384. // invert horizontal direction for rtl mode
  2385. if (self.isrtlmode) px = -px;
  2386. if (px) {
  2387. if (self.scrollmom) {
  2388. self.scrollmom.stop();
  2389. }
  2390. self.lastdeltax += px;
  2391. self.debounced("mousewheelx", function() {
  2392. var dt = self.lastdeltax;
  2393. self.lastdeltax = 0;
  2394. if (!self.rail.drag) {
  2395. self.doScrollLeftBy(dt);
  2396. }
  2397. }, 15);
  2398. }
  2399. if (py) {
  2400. if (self.opt.nativeparentscrolling && chkscroll && !self.ispage && !self.zoomactive) {
  2401. if (py < 0) {
  2402. if (self.getScrollTop() >= self.page.maxh) return true;
  2403. } else {
  2404. if (self.getScrollTop() <= 0) return true;
  2405. }
  2406. }
  2407. if (self.scrollmom) {
  2408. self.scrollmom.stop();
  2409. }
  2410. self.lastdeltay += py;
  2411. // self.debounced("mousewheely", function() {
  2412. self.synched("mousewheely", function() {
  2413. var dt = self.lastdeltay;
  2414. self.lastdeltay = 0;
  2415. if (!self.rail.drag) {
  2416. self.doScrollBy(dt);
  2417. }
  2418. }, 15);
  2419. }
  2420. e.stopImmediatePropagation();
  2421. return e.preventDefault();
  2422. }
  2423. this.onmousewheel = function(e) {
  2424. if (self.wheelprevented) return;
  2425. if (self.railslocked) {
  2426. self.debounced("checkunlock", self.resize, 250);
  2427. return true;
  2428. }
  2429. if (self.rail.drag) return self.cancelEvent(e);
  2430. if (self.opt.oneaxismousemode == "auto" && e.deltaX != 0) self.opt.oneaxismousemode = false; // check two-axis mouse support (not very elegant)
  2431. if (self.opt.oneaxismousemode && e.deltaX == 0) {
  2432. if (!self.rail.scrollable) {
  2433. if (self.railh && self.railh.scrollable) {
  2434. return self.onmousewheelhr(e);
  2435. } else {
  2436. return true;
  2437. }
  2438. }
  2439. }
  2440. var nw = +(new Date());
  2441. var chk = false;
  2442. if (self.opt.preservenativescrolling && ((self.checkarea + 600) < nw)) {
  2443. self.nativescrollingarea = self.isScrollable(e);
  2444. chk = true;
  2445. }
  2446. self.checkarea = nw;
  2447. if (self.nativescrollingarea) return true; // this isn't my business
  2448. var ret = execScrollWheel(e, false, chk);
  2449. if (ret) self.checkarea = 0;
  2450. return ret;
  2451. };
  2452. this.onmousewheelhr = function(e) {
  2453. if (self.wheelprevented) return;
  2454. if (self.railslocked || !self.railh.scrollable) return true;
  2455. if (self.rail.drag) return self.cancelEvent(e);
  2456. var nw = +(new Date());
  2457. var chk = false;
  2458. if (self.opt.preservenativescrolling && ((self.checkarea + 600) < nw)) {
  2459. self.nativescrollingarea = self.isScrollable(e);
  2460. chk = true;
  2461. }
  2462. self.checkarea = nw;
  2463. if (self.nativescrollingarea) return true; // this isn't my business
  2464. if (self.railslocked) return self.cancelEvent(e);
  2465. return execScrollWheel(e, true, chk);
  2466. };
  2467. this.stop = function() {
  2468. self.cancelScroll();
  2469. if (self.scrollmon) self.scrollmon.stop();
  2470. self.cursorfreezed = false;
  2471. self.scroll.y = Math.round(self.getScrollTop() * (1 / self.scrollratio.y));
  2472. self.noticeCursor();
  2473. return self;
  2474. };
  2475. this.getTransitionSpeed = function(dif) {
  2476. var sp = Math.round(self.opt.scrollspeed * 10);
  2477. var ex = Math.min(sp, Math.round((dif / 20) * self.opt.scrollspeed));
  2478. return (ex > 20) ? ex : 0;
  2479. };
  2480. if (!self.opt.smoothscroll) {
  2481. this.doScrollLeft = function(x, spd) { //direct
  2482. var y = self.getScrollTop();
  2483. self.doScrollPos(x, y, spd);
  2484. };
  2485. this.doScrollTop = function(y, spd) { //direct
  2486. var x = self.getScrollLeft();
  2487. self.doScrollPos(x, y, spd);
  2488. };
  2489. this.doScrollPos = function(x, y, spd) { //direct
  2490. var nx = (x > self.page.maxw) ? self.page.maxw : x;
  2491. if (nx < 0) nx = 0;
  2492. var ny = (y > self.page.maxh) ? self.page.maxh : y;
  2493. if (ny < 0) ny = 0;
  2494. self.synched('scroll', function() {
  2495. self.setScrollTop(ny);
  2496. self.setScrollLeft(nx);
  2497. });
  2498. };
  2499. this.cancelScroll = function() {}; // direct
  2500. } else if (self.ishwscroll && cap.hastransition && self.opt.usetransition && !!self.opt.smoothscroll) {
  2501. this.prepareTransition = function(dif, istime) {
  2502. var ex = (istime) ? ((dif > 20) ? dif : 0) : self.getTransitionSpeed(dif);
  2503. var trans = (ex) ? cap.prefixstyle + 'transform ' + ex + 'ms ease-out' : '';
  2504. if (!self.lasttransitionstyle || self.lasttransitionstyle != trans) {
  2505. self.lasttransitionstyle = trans;
  2506. self.doc.css(cap.transitionstyle, trans);
  2507. }
  2508. return ex;
  2509. };
  2510. this.doScrollLeft = function(x, spd) { //trans
  2511. var y = (self.scrollrunning) ? self.newscrolly : self.getScrollTop();
  2512. self.doScrollPos(x, y, spd);
  2513. };
  2514. this.doScrollTop = function(y, spd) { //trans
  2515. var x = (self.scrollrunning) ? self.newscrollx : self.getScrollLeft();
  2516. self.doScrollPos(x, y, spd);
  2517. };
  2518. this.doScrollPos = function(x, y, spd) { //trans
  2519. var py = self.getScrollTop();
  2520. var px = self.getScrollLeft();
  2521. if (((self.newscrolly - py) * (y - py) < 0) || ((self.newscrollx - px) * (x - px) < 0)) self.cancelScroll(); //inverted movement detection
  2522. if (self.opt.bouncescroll == false) {
  2523. if (y < 0) y = 0;
  2524. else if (y > self.page.maxh) y = self.page.maxh;
  2525. if (x < 0) x = 0;
  2526. else if (x > self.page.maxw) x = self.page.maxw;
  2527. }
  2528. if (self.scrollrunning && x == self.newscrollx && y == self.newscrolly) return false;
  2529. self.newscrolly = y;
  2530. self.newscrollx = x;
  2531. self.newscrollspeed = spd || false;
  2532. if (self.timer) return false;
  2533. self.timer = setTimeout(function() {
  2534. var top = self.getScrollTop();
  2535. var lft = self.getScrollLeft();
  2536. var dst = {};
  2537. dst.x = x - lft;
  2538. dst.y = y - top;
  2539. dst.px = lft;
  2540. dst.py = top;
  2541. var dd = Math.round(Math.sqrt(Math.pow(dst.x, 2) + Math.pow(dst.y, 2)));
  2542. var ms = (self.newscrollspeed && self.newscrollspeed > 1) ? self.newscrollspeed : self.getTransitionSpeed(dd);
  2543. if (self.newscrollspeed && self.newscrollspeed <= 1) ms *= self.newscrollspeed;
  2544. self.prepareTransition(ms, true);
  2545. if (self.timerscroll && self.timerscroll.tm) clearInterval(self.timerscroll.tm);
  2546. if (ms > 0) {
  2547. if (!self.scrollrunning && self.onscrollstart) {
  2548. var info = {
  2549. "type": "scrollstart",
  2550. "current": {
  2551. "x": lft,
  2552. "y": top
  2553. },
  2554. "request": {
  2555. "x": x,
  2556. "y": y
  2557. },
  2558. "end": {
  2559. "x": self.newscrollx,
  2560. "y": self.newscrolly
  2561. },
  2562. "speed": ms
  2563. };
  2564. self.onscrollstart.call(self, info);
  2565. }
  2566. if (cap.transitionend) {
  2567. if (!self.scrollendtrapped) {
  2568. self.scrollendtrapped = true;
  2569. self.bind(self.doc, cap.transitionend, self.onScrollTransitionEnd, false); //I have got to do something usefull!!
  2570. }
  2571. } else {
  2572. if (self.scrollendtrapped) clearTimeout(self.scrollendtrapped);
  2573. self.scrollendtrapped = setTimeout(self.onScrollTransitionEnd, ms); // simulate transitionend event
  2574. }
  2575. var py = top;
  2576. var px = lft;
  2577. self.timerscroll = {
  2578. bz: new BezierClass(py, self.newscrolly, ms, 0, 0, 0.58, 1),
  2579. bh: new BezierClass(px, self.newscrollx, ms, 0, 0, 0.58, 1)
  2580. };
  2581. if (!self.cursorfreezed) self.timerscroll.tm = setInterval(function() {
  2582. self.showCursor(self.getScrollTop(), self.getScrollLeft());
  2583. }, 60);
  2584. }
  2585. self.synched("doScroll-set", function() {
  2586. self.timer = 0;
  2587. if (self.scrollendtrapped) self.scrollrunning = true;
  2588. self.setScrollTop(self.newscrolly);
  2589. self.setScrollLeft(self.newscrollx);
  2590. if (!self.scrollendtrapped) self.onScrollTransitionEnd();
  2591. });
  2592. }, 50);
  2593. };
  2594. this.cancelScroll = function() {
  2595. if (!self.scrollendtrapped) return true;
  2596. var py = self.getScrollTop();
  2597. var px = self.getScrollLeft();
  2598. self.scrollrunning = false;
  2599. if (!cap.transitionend) clearTimeout(cap.transitionend);
  2600. self.scrollendtrapped = false;
  2601. self._unbind(self.doc[0], cap.transitionend, self.onScrollTransitionEnd);
  2602. self.prepareTransition(0);
  2603. self.setScrollTop(py); // fire event onscroll
  2604. if (self.railh) self.setScrollLeft(px);
  2605. if (self.timerscroll && self.timerscroll.tm) clearInterval(self.timerscroll.tm);
  2606. self.timerscroll = false;
  2607. self.cursorfreezed = false;
  2608. self.showCursor(py, px);
  2609. return self;
  2610. };
  2611. this.onScrollTransitionEnd = function() {
  2612. if (self.scrollendtrapped) self._unbind(self.doc[0], cap.transitionend, self.onScrollTransitionEnd);
  2613. self.scrollendtrapped = false;
  2614. self.prepareTransition(0);
  2615. if (self.timerscroll && self.timerscroll.tm) clearInterval(self.timerscroll.tm);
  2616. self.timerscroll = false;
  2617. var py = self.getScrollTop();
  2618. var px = self.getScrollLeft();
  2619. self.setScrollTop(py); // fire event onscroll
  2620. if (self.railh) self.setScrollLeft(px); // fire event onscroll left
  2621. self.noticeCursor(false, py, px);
  2622. self.cursorfreezed = false;
  2623. if (py < 0) py = 0;
  2624. else if (py > self.page.maxh) py = self.page.maxh;
  2625. if (px < 0) px = 0;
  2626. else if (px > self.page.maxw) px = self.page.maxw;
  2627. if ((py != self.newscrolly) || (px != self.newscrollx)) return self.doScrollPos(px, py, self.opt.snapbackspeed);
  2628. if (self.onscrollend && self.scrollrunning) {
  2629. self.triggerScrollEnd();
  2630. }
  2631. self.scrollrunning = false;
  2632. };
  2633. } else {
  2634. this.doScrollLeft = function(x, spd) { //no-trans
  2635. var y = (self.scrollrunning) ? self.newscrolly : self.getScrollTop();
  2636. self.doScrollPos(x, y, spd);
  2637. };
  2638. this.doScrollTop = function(y, spd) { //no-trans
  2639. var x = (self.scrollrunning) ? self.newscrollx : self.getScrollLeft();
  2640. self.doScrollPos(x, y, spd);
  2641. };
  2642. this.doScrollPos = function(x, y, spd) { //no-trans
  2643. var y = (y === undefined || y === false) ? self.getScrollTop(true) : y;
  2644. if ((self.timer) && (self.newscrolly == y) && (self.newscrollx == x)) return true;
  2645. if (self.timer) clearAnimationFrame(self.timer);
  2646. self.timer = 0;
  2647. var py = self.getScrollTop();
  2648. var px = self.getScrollLeft();
  2649. if (((self.newscrolly - py) * (y - py) < 0) || ((self.newscrollx - px) * (x - px) < 0)) self.cancelScroll(); //inverted movement detection
  2650. self.newscrolly = y;
  2651. self.newscrollx = x;
  2652. if (!self.bouncescroll || !self.rail.visibility) {
  2653. if (self.newscrolly < 0) {
  2654. self.newscrolly = 0;
  2655. } else if (self.newscrolly > self.page.maxh) {
  2656. self.newscrolly = self.page.maxh;
  2657. }
  2658. }
  2659. if (!self.bouncescroll || !self.railh.visibility) {
  2660. if (self.newscrollx < 0) {
  2661. self.newscrollx = 0;
  2662. } else if (self.newscrollx > self.page.maxw) {
  2663. self.newscrollx = self.page.maxw;
  2664. }
  2665. }
  2666. self.dst = {};
  2667. self.dst.x = x - px;
  2668. self.dst.y = y - py;
  2669. self.dst.px = px;
  2670. self.dst.py = py;
  2671. var dst = Math.round(Math.sqrt(Math.pow(self.dst.x, 2) + Math.pow(self.dst.y, 2)));
  2672. self.dst.ax = self.dst.x / dst;
  2673. self.dst.ay = self.dst.y / dst;
  2674. var pa = 0;
  2675. var pe = dst;
  2676. if (self.dst.x == 0) {
  2677. pa = py;
  2678. pe = y;
  2679. self.dst.ay = 1;
  2680. self.dst.py = 0;
  2681. } else if (self.dst.y == 0) {
  2682. pa = px;
  2683. pe = x;
  2684. self.dst.ax = 1;
  2685. self.dst.px = 0;
  2686. }
  2687. var ms = self.getTransitionSpeed(dst);
  2688. if (spd && spd <= 1) ms *= spd;
  2689. if (ms > 0) {
  2690. self.bzscroll = (self.bzscroll) ? self.bzscroll.update(pe, ms) : new BezierClass(pa, pe, ms, 0, 1, 0, 1);
  2691. } else {
  2692. self.bzscroll = false;
  2693. }
  2694. if (self.timer) return;
  2695. if ((py == self.page.maxh && y >= self.page.maxh) || (px == self.page.maxw && x >= self.page.maxw)) self.checkContentSize();
  2696. var sync = 1;
  2697. function scrolling() {
  2698. if (self.cancelAnimationFrame) return true;
  2699. self.scrollrunning = true;
  2700. sync = 1 - sync;
  2701. if (sync) return (self.timer = setAnimationFrame(scrolling) || 1);
  2702. var done = 0;
  2703. var sx, sy;
  2704. var sc = sy = self.getScrollTop();
  2705. if (self.dst.ay) {
  2706. sc = (self.bzscroll) ? self.dst.py + (self.bzscroll.getNow() * self.dst.ay) : self.newscrolly;
  2707. var dr = sc - sy;
  2708. if ((dr < 0 && sc < self.newscrolly) || (dr > 0 && sc > self.newscrolly)) sc = self.newscrolly;
  2709. self.setScrollTop(sc);
  2710. if (sc == self.newscrolly) done = 1;
  2711. } else {
  2712. done = 1;
  2713. }
  2714. var scx = sx = self.getScrollLeft();
  2715. if (self.dst.ax) {
  2716. scx = (self.bzscroll) ? self.dst.px + (self.bzscroll.getNow() * self.dst.ax) : self.newscrollx;
  2717. var dr = scx - sx;
  2718. if ((dr < 0 && scx < self.newscrollx) || (dr > 0 && scx > self.newscrollx)) scx = self.newscrollx;
  2719. self.setScrollLeft(scx);
  2720. if (scx == self.newscrollx) done += 1;
  2721. } else {
  2722. done += 1;
  2723. }
  2724. if (done == 2) {
  2725. self.timer = 0;
  2726. self.cursorfreezed = false;
  2727. self.bzscroll = false;
  2728. self.scrollrunning = false;
  2729. if (sc < 0) sc = 0;
  2730. else if (sc > self.page.maxh) sc = Math.max(0,self.page.maxh);
  2731. if (scx < 0) scx = 0;
  2732. else if (scx > self.page.maxw) scx = self.page.maxw;
  2733. if ((scx != self.newscrollx) || (sc != self.newscrolly)) self.doScrollPos(scx, sc);
  2734. else {
  2735. if (self.onscrollend) {
  2736. self.triggerScrollEnd();
  2737. }
  2738. }
  2739. } else {
  2740. self.timer = setAnimationFrame(scrolling) || 1;
  2741. }
  2742. }
  2743. self.cancelAnimationFrame = false;
  2744. self.timer = 1;
  2745. if (self.onscrollstart && !self.scrollrunning) {
  2746. var info = {
  2747. "type": "scrollstart",
  2748. "current": {
  2749. "x": px,
  2750. "y": py
  2751. },
  2752. "request": {
  2753. "x": x,
  2754. "y": y
  2755. },
  2756. "end": {
  2757. "x": self.newscrollx,
  2758. "y": self.newscrolly
  2759. },
  2760. "speed": ms
  2761. };
  2762. self.onscrollstart.call(self, info);
  2763. }
  2764. scrolling();
  2765. if ((py == self.page.maxh && y >= py) || (px == self.page.maxw && x >= px)) self.checkContentSize();
  2766. self.noticeCursor();
  2767. };
  2768. this.cancelScroll = function() {
  2769. if (self.timer) clearAnimationFrame(self.timer);
  2770. self.timer = 0;
  2771. self.bzscroll = false;
  2772. self.scrollrunning = false;
  2773. return self;
  2774. };
  2775. }
  2776. this.doScrollBy = function(stp, relative) {
  2777. var ny = 0;
  2778. if (relative) {
  2779. ny = Math.floor((self.scroll.y - stp) * self.scrollratio.y);
  2780. } else {
  2781. var sy = (self.timer) ? self.newscrolly : self.getScrollTop(true);
  2782. ny = sy - stp;
  2783. }
  2784. if (self.bouncescroll) {
  2785. var haf = Math.round(self.view.h / 2);
  2786. if (ny < -haf) ny = -haf;
  2787. else if (ny > (self.page.maxh + haf)) ny = (self.page.maxh + haf);
  2788. }
  2789. self.cursorfreezed = false;
  2790. var py = self.getScrollTop(true);
  2791. if (ny < 0 && py <= 0) return self.noticeCursor();
  2792. else if (ny > self.page.maxh && py >= self.page.maxh) {
  2793. self.checkContentSize();
  2794. return self.noticeCursor();
  2795. }
  2796. self.doScrollTop(ny);
  2797. };
  2798. this.doScrollLeftBy = function(stp, relative) {
  2799. var nx = 0;
  2800. if (relative) {
  2801. nx = Math.floor((self.scroll.x - stp) * self.scrollratio.x);
  2802. } else {
  2803. var sx = (self.timer) ? self.newscrollx : self.getScrollLeft(true);
  2804. nx = sx - stp;
  2805. }
  2806. if (self.bouncescroll) {
  2807. var haf = Math.round(self.view.w / 2);
  2808. if (nx < -haf) nx = -haf;
  2809. else if (nx > (self.page.maxw + haf)) nx = (self.page.maxw + haf);
  2810. }
  2811. self.cursorfreezed = false;
  2812. var px = self.getScrollLeft(true);
  2813. if (nx < 0 && px <= 0) return self.noticeCursor();
  2814. else if (nx > self.page.maxw && px >= self.page.maxw) return self.noticeCursor();
  2815. self.doScrollLeft(nx);
  2816. };
  2817. this.doScrollTo = function(pos, relative) {
  2818. var ny = (relative) ? Math.round(pos * self.scrollratio.y) : pos;
  2819. if (ny < 0) ny = 0;
  2820. else if (ny > self.page.maxh) ny = self.page.maxh;
  2821. self.cursorfreezed = false;
  2822. self.doScrollTop(pos);
  2823. };
  2824. this.checkContentSize = function() {
  2825. var pg = self.getContentSize();
  2826. if ((pg.h != self.page.h) || (pg.w != self.page.w)) self.resize(false, pg);
  2827. };
  2828. self.onscroll = function(e) {
  2829. if (self.rail.drag) return;
  2830. if (!self.cursorfreezed) {
  2831. self.synched('scroll', function() {
  2832. self.scroll.y = Math.round(self.getScrollTop() * (1 / self.scrollratio.y));
  2833. if (self.railh) self.scroll.x = Math.round(self.getScrollLeft() * (1 / self.scrollratio.x));
  2834. self.noticeCursor();
  2835. });
  2836. }
  2837. self.triggerScrollEnd();
  2838. };
  2839. self.bind(self.docscroll, "scroll", self.onscroll);
  2840. this.doZoomIn = function(e) {
  2841. if (self.zoomactive) return;
  2842. self.zoomactive = true;
  2843. self.zoomrestore = {
  2844. style: {}
  2845. };
  2846. var lst = ['position', 'top', 'left', 'zIndex', 'backgroundColor', 'marginTop', 'marginBottom', 'marginLeft', 'marginRight'];
  2847. var win = self.win[0].style;
  2848. for (var a in lst) {
  2849. var pp = lst[a];
  2850. self.zoomrestore.style[pp] = (win[pp] !== undefined) ? win[pp] : '';
  2851. }
  2852. self.zoomrestore.style.width = self.win.css('width');
  2853. self.zoomrestore.style.height = self.win.css('height');
  2854. self.zoomrestore.padding = {
  2855. w: self.win.outerWidth() - self.win.width(),
  2856. h: self.win.outerHeight() - self.win.height()
  2857. };
  2858. if (cap.isios4) {
  2859. self.zoomrestore.scrollTop = $(window).scrollTop();
  2860. $(window).scrollTop(0);
  2861. }
  2862. self.win.css({
  2863. position: (cap.isios4) ? "absolute" : "fixed",
  2864. top: 0,
  2865. left: 0,
  2866. zIndex: globalmaxzindex + 100,
  2867. margin: 0
  2868. });
  2869. var bkg = self.win.css("backgroundColor");
  2870. if (bkg == "" || /transparent|rgba\(0, 0, 0, 0\)|rgba\(0,0,0,0\)/.test(bkg)) self.win.css("backgroundColor", "#fff");
  2871. self.rail.css({
  2872. zIndex: globalmaxzindex + 101
  2873. });
  2874. self.zoom.css({
  2875. zIndex: globalmaxzindex + 102
  2876. });
  2877. self.zoom.css('backgroundPosition', '0px -18px');
  2878. self.resizeZoom();
  2879. if (self.onzoomin) self.onzoomin.call(self);
  2880. return self.cancelEvent(e);
  2881. };
  2882. this.doZoomOut = function(e) {
  2883. if (!self.zoomactive) return;
  2884. self.zoomactive = false;
  2885. self.win.css("margin", "");
  2886. self.win.css(self.zoomrestore.style);
  2887. if (cap.isios4) {
  2888. $(window).scrollTop(self.zoomrestore.scrollTop);
  2889. }
  2890. self.rail.css({
  2891. "z-index": self.zindex
  2892. });
  2893. self.zoom.css({
  2894. "z-index": self.zindex
  2895. });
  2896. self.zoomrestore = false;
  2897. self.zoom.css('backgroundPosition', '0px 0px');
  2898. self.onResize();
  2899. if (self.onzoomout) self.onzoomout.call(self);
  2900. return self.cancelEvent(e);
  2901. };
  2902. this.doZoom = function(e) {
  2903. return (self.zoomactive) ? self.doZoomOut(e) : self.doZoomIn(e);
  2904. };
  2905. this.resizeZoom = function() {
  2906. if (!self.zoomactive) return;
  2907. var py = self.getScrollTop(); //preserve scrolling position
  2908. self.win.css({
  2909. width: $(window).width() - self.zoomrestore.padding.w + "px",
  2910. height: $(window).height() - self.zoomrestore.padding.h + "px"
  2911. });
  2912. self.onResize();
  2913. self.setScrollTop(Math.min(self.page.maxh, py));
  2914. };
  2915. this.init();
  2916. $.nicescroll.push(this);
  2917. };
  2918. // Inspired by the work of Kin Blas
  2919. // http://webpro.host.adobe.com/people/jblas/momentum/includes/jquery.momentum.0.7.js
  2920. var ScrollMomentumClass2D = function(nc) {
  2921. var self = this;
  2922. this.nc = nc;
  2923. this.lastx = 0;
  2924. this.lasty = 0;
  2925. this.speedx = 0;
  2926. this.speedy = 0;
  2927. this.lasttime = 0;
  2928. this.steptime = 0;
  2929. this.snapx = false;
  2930. this.snapy = false;
  2931. this.demulx = 0;
  2932. this.demuly = 0;
  2933. this.lastscrollx = -1;
  2934. this.lastscrolly = -1;
  2935. this.chkx = 0;
  2936. this.chky = 0;
  2937. this.timer = 0;
  2938. this.time = function() {
  2939. return +new Date(); //beautifull hack
  2940. };
  2941. this.reset = function(px, py) {
  2942. self.stop();
  2943. var now = self.time();
  2944. self.steptime = 0;
  2945. self.lasttime = now;
  2946. self.speedx = 0;
  2947. self.speedy = 0;
  2948. self.lastx = px;
  2949. self.lasty = py;
  2950. self.lastscrollx = -1;
  2951. self.lastscrolly = -1;
  2952. };
  2953. this.update = function(px, py) {
  2954. var now = self.time();
  2955. self.steptime = now - self.lasttime;
  2956. self.lasttime = now;
  2957. var dy = py - self.lasty;
  2958. var dx = px - self.lastx;
  2959. var sy = self.nc.getScrollTop();
  2960. var sx = self.nc.getScrollLeft();
  2961. var newy = sy + dy;
  2962. var newx = sx + dx;
  2963. self.snapx = (newx < 0) || (newx > self.nc.page.maxw);
  2964. self.snapy = (newy < 0) || (newy > self.nc.page.maxh);
  2965. self.speedx = dx;
  2966. self.speedy = dy;
  2967. self.lastx = px;
  2968. self.lasty = py;
  2969. };
  2970. this.stop = function() {
  2971. self.nc.unsynched("domomentum2d");
  2972. if (self.timer) clearTimeout(self.timer);
  2973. self.timer = 0;
  2974. self.lastscrollx = -1;
  2975. self.lastscrolly = -1;
  2976. };
  2977. this.doSnapy = function(nx, ny) {
  2978. var snap = false;
  2979. if (ny < 0) {
  2980. ny = 0;
  2981. snap = true;
  2982. } else if (ny > self.nc.page.maxh) {
  2983. ny = self.nc.page.maxh;
  2984. snap = true;
  2985. }
  2986. if (nx < 0) {
  2987. nx = 0;
  2988. snap = true;
  2989. } else if (nx > self.nc.page.maxw) {
  2990. nx = self.nc.page.maxw;
  2991. snap = true;
  2992. }
  2993. (snap) ? self.nc.doScrollPos(nx, ny, self.nc.opt.snapbackspeed): self.nc.triggerScrollEnd();
  2994. };
  2995. this.doMomentum = function(gp) {
  2996. var t = self.time();
  2997. var l = (gp) ? t + gp : self.lasttime;
  2998. var sl = self.nc.getScrollLeft();
  2999. var st = self.nc.getScrollTop();
  3000. var pageh = self.nc.page.maxh;
  3001. var pagew = self.nc.page.maxw;
  3002. self.speedx = (pagew > 0) ? Math.min(60, self.speedx) : 0;
  3003. self.speedy = (pageh > 0) ? Math.min(60, self.speedy) : 0;
  3004. var chk = l && (t - l) <= 60;
  3005. if ((st < 0) || (st > pageh) || (sl < 0) || (sl > pagew)) chk = false;
  3006. var sy = (self.speedy && chk) ? self.speedy : false;
  3007. var sx = (self.speedx && chk) ? self.speedx : false;
  3008. if (sy || sx) {
  3009. var tm = Math.max(16, self.steptime); //timeout granularity
  3010. if (tm > 50) { // do smooth
  3011. var xm = tm / 50;
  3012. self.speedx *= xm;
  3013. self.speedy *= xm;
  3014. tm = 50;
  3015. }
  3016. self.demulxy = 0;
  3017. self.lastscrollx = self.nc.getScrollLeft();
  3018. self.chkx = self.lastscrollx;
  3019. self.lastscrolly = self.nc.getScrollTop();
  3020. self.chky = self.lastscrolly;
  3021. var nx = self.lastscrollx;
  3022. var ny = self.lastscrolly;
  3023. var onscroll = function() {
  3024. var df = ((self.time() - t) > 600) ? 0.04 : 0.02;
  3025. if (self.speedx) {
  3026. nx = Math.floor(self.lastscrollx - (self.speedx * (1 - self.demulxy)));
  3027. self.lastscrollx = nx;
  3028. if ((nx < 0) || (nx > pagew)) df = 0.10;
  3029. }
  3030. if (self.speedy) {
  3031. ny = Math.floor(self.lastscrolly - (self.speedy * (1 - self.demulxy)));
  3032. self.lastscrolly = ny;
  3033. if ((ny < 0) || (ny > pageh)) df = 0.10;
  3034. }
  3035. self.demulxy = Math.min(1, self.demulxy + df);
  3036. self.nc.synched("domomentum2d", function() {
  3037. if (self.speedx) {
  3038. var scx = self.nc.getScrollLeft();
  3039. // if (scx != self.chkx) self.stop();
  3040. self.chkx = nx;
  3041. self.nc.setScrollLeft(nx);
  3042. }
  3043. if (self.speedy) {
  3044. var scy = self.nc.getScrollTop();
  3045. // if (scy != self.chky) self.stop();
  3046. self.chky = ny;
  3047. self.nc.setScrollTop(ny);
  3048. }
  3049. if (!self.timer) {
  3050. self.nc.hideCursor();
  3051. self.doSnapy(nx, ny);
  3052. }
  3053. });
  3054. if (self.demulxy < 1) {
  3055. self.timer = setTimeout(onscroll, tm);
  3056. } else {
  3057. self.stop();
  3058. self.nc.hideCursor();
  3059. self.doSnapy(nx, ny);
  3060. }
  3061. };
  3062. onscroll();
  3063. } else {
  3064. self.doSnapy(self.nc.getScrollLeft(), self.nc.getScrollTop());
  3065. }
  3066. };
  3067. };
  3068. // override jQuery scrollTop
  3069. var _scrollTop = jQuery.fn.scrollTop; // preserve original function
  3070. jQuery.cssHooks.pageYOffset = {
  3071. get: function(elem, computed, extra) {
  3072. var nice = $.data(elem, '__nicescroll') || false;
  3073. return (nice && nice.ishwscroll) ? nice.getScrollTop() : _scrollTop.call(elem);
  3074. },
  3075. set: function(elem, value) {
  3076. var nice = $.data(elem, '__nicescroll') || false;
  3077. (nice && nice.ishwscroll) ? nice.setScrollTop(parseInt(value)): _scrollTop.call(elem, value);
  3078. return this;
  3079. }
  3080. };
  3081. /*
  3082. $.fx.step["scrollTop"] = function(fx){
  3083. $.cssHooks["scrollTop"].set( fx.elem, fx.now + fx.unit );
  3084. };
  3085. */
  3086. jQuery.fn.scrollTop = function(value) {
  3087. if (value === undefined) {
  3088. var nice = (this[0]) ? $.data(this[0], '__nicescroll') || false : false;
  3089. return (nice && nice.ishwscroll) ? nice.getScrollTop() : _scrollTop.call(this);
  3090. } else {
  3091. return this.each(function() {
  3092. var nice = $.data(this, '__nicescroll') || false;
  3093. (nice && nice.ishwscroll) ? nice.setScrollTop(parseInt(value)): _scrollTop.call($(this), value);
  3094. });
  3095. }
  3096. };
  3097. // override jQuery scrollLeft
  3098. var _scrollLeft = jQuery.fn.scrollLeft; // preserve original function
  3099. $.cssHooks.pageXOffset = {
  3100. get: function(elem, computed, extra) {
  3101. var nice = $.data(elem, '__nicescroll') || false;
  3102. return (nice && nice.ishwscroll) ? nice.getScrollLeft() : _scrollLeft.call(elem);
  3103. },
  3104. set: function(elem, value) {
  3105. var nice = $.data(elem, '__nicescroll') || false;
  3106. (nice && nice.ishwscroll) ? nice.setScrollLeft(parseInt(value)): _scrollLeft.call(elem, value);
  3107. return this;
  3108. }
  3109. };
  3110. /*
  3111. $.fx.step["scrollLeft"] = function(fx){
  3112. $.cssHooks["scrollLeft"].set( fx.elem, fx.now + fx.unit );
  3113. };
  3114. */
  3115. jQuery.fn.scrollLeft = function(value) {
  3116. if (value === undefined) {
  3117. var nice = (this[0]) ? $.data(this[0], '__nicescroll') || false : false;
  3118. return (nice && nice.ishwscroll) ? nice.getScrollLeft() : _scrollLeft.call(this);
  3119. } else {
  3120. return this.each(function() {
  3121. var nice = $.data(this, '__nicescroll') || false;
  3122. (nice && nice.ishwscroll) ? nice.setScrollLeft(parseInt(value)): _scrollLeft.call($(this), value);
  3123. });
  3124. }
  3125. };
  3126. var NiceScrollArray = function(doms) {
  3127. var self = this;
  3128. this.length = 0;
  3129. this.name = "nicescrollarray";
  3130. this.each = function(fn) {
  3131. $.each(self, fn);
  3132. return self;
  3133. };
  3134. this.push = function(nice) {
  3135. self[self.length] = nice;
  3136. self.length++;
  3137. };
  3138. this.eq = function(idx) {
  3139. return self[idx];
  3140. };
  3141. if (doms) {
  3142. for (var a = 0; a < doms.length; a++) {
  3143. var nice = $.data(doms[a], '__nicescroll') || false;
  3144. if (nice) {
  3145. this[this.length] = nice;
  3146. this.length++;
  3147. }
  3148. }
  3149. }
  3150. return this;
  3151. };
  3152. function mplex(el, lst, fn) {
  3153. for (var a = 0; a < lst.length; a++) fn(el, lst[a]);
  3154. }
  3155. mplex(
  3156. NiceScrollArray.prototype, ['show', 'hide', 'toggle', 'onResize', 'resize', 'remove', 'stop', 'doScrollPos'],
  3157. function(e, n) {
  3158. e[n] = function() {
  3159. var args = arguments;
  3160. return this.each(function() {
  3161. this[n].apply(this, args);
  3162. });
  3163. };
  3164. }
  3165. );
  3166. jQuery.fn.getNiceScroll = function(index) {
  3167. if (index === undefined) {
  3168. return new NiceScrollArray(this);
  3169. } else {
  3170. return this[index] && $.data(this[index], '__nicescroll') || false;
  3171. }
  3172. };
  3173. jQuery.expr[':'].nicescroll = function(a) {
  3174. return $.data(a, '__nicescroll') !== undefined;
  3175. };
  3176. $.fn.niceScroll = function(wrapper, opt) {
  3177. if (opt === undefined && typeof wrapper == "object" && !("jquery" in wrapper)) {
  3178. opt = wrapper;
  3179. wrapper = false;
  3180. }
  3181. opt = $.extend({},opt); // cloning
  3182. var ret = new NiceScrollArray();
  3183. if (opt === undefined) opt = {};
  3184. if (wrapper || false) {
  3185. opt.doc = $(wrapper);
  3186. opt.win = $(this);
  3187. }
  3188. var docundef = !("doc" in opt);
  3189. if (!docundef && !("win" in opt)) opt.win = $(this);
  3190. this.each(function() {
  3191. var nice = $(this).data('__nicescroll') || false;
  3192. if (!nice) {
  3193. opt.doc = (docundef) ? $(this) : opt.doc;
  3194. nice = new NiceScrollClass(opt, $(this));
  3195. $(this).data('__nicescroll', nice);
  3196. }
  3197. ret.push(nice);
  3198. });
  3199. return (ret.length == 1) ? ret[0] : ret;
  3200. };
  3201. window.NiceScroll = {
  3202. getjQuery: function() {
  3203. return jQuery;
  3204. }
  3205. };
  3206. if (!$.nicescroll) {
  3207. $.nicescroll = new NiceScrollArray();
  3208. $.nicescroll.options = _globaloptions;
  3209. }
  3210. }));