overlib_followscroll.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. //\/////
  2. //\ overLIB Follow Scroll Plugin
  3. //\ This file requires overLIB 4.10 or later.
  4. //\
  5. //\ overLIB 4.10 - You may not remove or change this notice.
  6. //\ Copyright Erik Bosrup 1998-2004. All rights reserved.
  7. //\ Contributors are listed on the homepage.
  8. //\ See http://www.bosrup.com/web/overlib/ for details.
  9. // $Revision: 1.12 $ $Date: 2004/11/25 21:27:19 $
  10. //\/////
  11. //\mini
  12. ////////
  13. // PRE-INIT
  14. // Ignore these lines, configuration is below.
  15. ////////
  16. if (typeof olInfo == 'undefined' || typeof olInfo.meets == 'undefined' || !olInfo.meets(4.10)) alert('overLIB 4.10 or later is required for the Follow Scroll Plugin.');
  17. else {
  18. registerCommands('followscroll,followscrollrefresh');
  19. ////////
  20. // DEFAULT CONFIGURATION
  21. // You don't have to change anything here if you don't want to. All of this can be
  22. // changed on your html page or through an overLIB call.
  23. ////////
  24. // Default value for scroll is not to scroll (0)
  25. if (typeof ol_followscroll=='undefined') var ol_followscroll=0;
  26. if (typeof ol_followscrollrefresh=='undefined') var ol_followscrollrefresh=100;
  27. ////////
  28. // END OF CONFIGURATION
  29. // Don't change anything below this line, all configuration is above.
  30. ////////
  31. ////////
  32. // INIT
  33. ////////
  34. // Runtime variables init. Don't change for config!
  35. var o3_followscroll=0;
  36. var o3_followscrollrefresh=100;
  37. ////////
  38. // PLUGIN FUNCTIONS
  39. ////////
  40. function setScrollVariables() {
  41. o3_followscroll=ol_followscroll;
  42. o3_followscrollrefresh=ol_followscrollrefresh;
  43. }
  44. // Parses Shadow and Scroll commands
  45. function parseScrollExtras(pf,i,ar) {
  46. var k=i,v;
  47. if (k < ar.length) {
  48. if (ar[k]==FOLLOWSCROLL) { eval(pf +'followscroll=('+pf+'followscroll==0) ? 1 : 0'); return k; }
  49. if (ar[k]==FOLLOWSCROLLREFRESH) { eval(pf+'followscrollrefresh='+ar[++k]); return k; }
  50. }
  51. return -1;
  52. }
  53. // Function to support scroll feature (overloads default)
  54. function scroll_placeLayer() {
  55. var placeX, placeY, widthFix = 0;
  56. // HORIZONTAL PLACEMENT
  57. if (o3_frame.innerWidth) {
  58. widthFix=Math.ceil(1.2*(o3_frame.outerWidth - o3_frame.innerWidth));
  59. widthFix = (widthFix > 50) ? 20 : widthFix;
  60. iwidth=o3_frame.innerWidth;
  61. } else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientWidth=='number'")&&eval('o3_frame.'+docRoot+'.clientWidth'))
  62. iwidth=eval('o3_frame.'+docRoot+'.clientWidth');
  63. // Horizontal scroll offset
  64. winoffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollLeft') : o3_frame.pageXOffset;
  65. placeX = runHook('horizontalPlacement',FCHAIN,iwidth,winoffset,widthFix);
  66. // VERTICAL PLACEMENT
  67. if (o3_frame.innerHeight) iheight=o3_frame.innerHeight;
  68. else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientHeight=='number'")&&eval('o3_frame.'+docRoot+'.clientHeight'))
  69. iheight=eval('o3_frame.'+docRoot+'.clientHeight');
  70. // Vertical scroll offset
  71. scrolloffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollTop') : o3_frame.pageYOffset;
  72. placeY = runHook('verticalPlacement',FCHAIN,iheight,scrolloffset);
  73. // Actually move the object.
  74. repositionTo(over,placeX,placeY);
  75. if (o3_followscroll && o3_sticky && (o3_relx || o3_rely) && (typeof o3_draggable == 'undefined' || !o3_draggable)) {
  76. if (typeof over.scroller=='undefined' || over.scroller.canScroll) over.scroller = new Scroller(placeX-winoffset,placeY-scrolloffset,o3_followscrollrefresh);
  77. }
  78. }
  79. ///////
  80. // SUPPORT ROUTINES FOR SCROLL FEATURE
  81. ///////
  82. // Scroller constructor
  83. function Scroller(X,Y,refresh) {
  84. this.canScroll=0;
  85. this.refresh=refresh;
  86. this.x=X;
  87. this.y=Y;
  88. this.timer=setTimeout("repositionOver()",this.refresh);
  89. }
  90. // Removes the timer to stop replacing the layer.
  91. function cancelScroll() {
  92. if (!o3_followscroll || typeof over.scroller == 'undefined') return;
  93. over.scroller.canScroll = 1;
  94. if (over.scroller.timer) {
  95. clearTimeout(over.scroller.timer);
  96. over.scroller.timer=null;
  97. }
  98. }
  99. // Find out how much we've scrolled.
  100. function getPageScrollY() {
  101. if (o3_frame.pageYOffset) return o3_frame.pageYOffset;
  102. if (eval(docRoot)) return eval('o3_frame.' + docRoot + '.scrollTop');
  103. return -1;
  104. }
  105. function getPageScrollX() {
  106. if (o3_frame.pageXOffset) return o3_frame.pageXOffset;
  107. if (eval(docRoot)) return eval('o3_frame.'+docRoot+'.scrollLeft');
  108. return -1;
  109. }
  110. // Find out where our layer is
  111. function getLayerTop(layer) {
  112. if (layer.pageY) return layer.pageY;
  113. if (layer.style.top) return parseInt(layer.style.top);
  114. return -1;
  115. }
  116. function getLayerLeft(layer) {
  117. if (layer.pageX) return layer.pageX;
  118. if (layer.style.left) return parseInt(layer.style.left);
  119. return -1;
  120. }
  121. // Repositions the layer if needed
  122. function repositionOver() {
  123. var X, Y, pgLeft, pgTop;
  124. pgTop = getPageScrollY();
  125. pgLeft = getPageScrollX();
  126. X = getLayerLeft(over)-pgLeft;
  127. Y = getLayerTop(over)-pgTop;
  128. if (X != over.scroller.x || Y != over.scroller.y) repositionTo(over, pgLeft+over.scroller.x, pgTop+over.scroller.y);
  129. over.scroller.timer = setTimeout("repositionOver()", over.scroller.refresh);
  130. }
  131. ////////
  132. // PLUGIN REGISTRATIONS
  133. ////////
  134. registerRunTimeFunction(setScrollVariables);
  135. registerCmdLineFunction(parseScrollExtras);
  136. registerHook("hideObject",cancelScroll,FAFTER);
  137. registerHook("placeLayer",scroll_placeLayer,FREPLACE);
  138. if (olInfo.meets(4.10)) registerNoParameterCommands('followscroll');
  139. }