portal html css js resource

scrollfix.js 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. (function($) {
  2. //URI:http://caibaojian.com/scrollfix
  3. //author:caibaojian
  4. //website:http://caibaojian.com
  5. //descirption:scroll and fixed some div
  6. $.fn.scrollFix = function(options) {
  7. return this.each(function() {
  8. var opts = $.extend({}, $.fn.scrollFix.defaultOptions, options);
  9. var obj = $(this),
  10. base = this,
  11. selfTop = 0,
  12. selfLeft = 0,
  13. toTop = 0,
  14. parentOffsetLeft = 0,
  15. parentOffsetTop = 0,
  16. outerHeight,
  17. outerWidth,
  18. objWidth = 0,
  19. placeholder = jQuery('<div>'), //创建一个jquery对象
  20. optsTop = opts.distanceTop, //定义到顶部的高度
  21. endfix = 0; //开始停止固定的位置
  22. var originalPosition;
  23. var originalOffsetTop;
  24. var originalZIndex;
  25. var lastOffsetLeft = -1;
  26. var isUnfixed = true;
  27. //如果没有找到节点,不进行处理
  28. if (obj.length <= 0) {
  29. return;
  30. }
  31. if (lastOffsetLeft == -1) {
  32. originalZIndex = obj.css('z-index');
  33. position = obj.css('position');
  34. originalPosition = obj.css('position');
  35. originalOffsetTop = obj.css('top');
  36. }
  37. var zIndex = obj.css('zIndex');
  38. if (opts.zIndex != 0) {
  39. zIndex = opts.zIndex;
  40. }
  41. //获取相对定位或者绝对定位的父类
  42. var parents = obj.parent();
  43. var Position = parents.css('position');
  44. while (!/^relative|absolute$/i.test(Position)) { //检测浮动元素的父类元素定位为'relative'或者'absolute',是的话退出,否则的话,执行循环,继续寻找它的父类
  45. parents = parents.parent();
  46. Position = parents.css('position');
  47. if (/^body|html$/i.test(parents[0].tagName)) break; //假如父类元素的标签为body或者HTML,说明没有找到父类为以上的定位,退出循环
  48. }
  49. var ie6 = !-[1, ] && !window.XMLHttpRequest; //兼容IE6
  50. var resizeWindow = false;
  51. function resetScroll() {
  52. setUnfixed();
  53. selfTop = obj.offset().top; //对象距离顶部高度
  54. selfLeft = obj.offset().left; //对象距离左边宽度
  55. outerHeight = obj.outerHeight(); //对象高度
  56. outerHeight = parseFloat(outerHeight) + parseFloat(obj.css('marginBottom').replace(/auto/, 0));
  57. outerWidth = obj.outerWidth(); //对象外宽度
  58. // objWidth = obj.width();
  59. objWidth = obj.outerWidth(true);
  60. var documentHeight = $(document).height(); //文档高度
  61. var startTop = $(opts.startTop), //开始浮动固定对象
  62. startBottom = $(opts.startBottom),
  63. toBottom, //停止滚动位置距离底部的高度
  64. ScrollHeight; //对象滚动的高度
  65. //计算父类偏移值
  66. if (/^body|html$/i.test(parents[0].tagName)) { //当父类元素非body或者HTML时,说明找到了一个父类为'relative'或者'absolute'的元素,得出它的偏移高度
  67. parentOffsetTop = 0, parentOffsetLeft = 0;
  68. } else {
  69. parentOffsetLeft = parents.offset().left, parentOffsetTop = parents.offset().top;
  70. }
  71. // 计算父节点的上边到顶部距离
  72. // 如果 body 有 top 属性, 消除这些位移
  73. var bodyToTop = parseInt(jQuery('body').css('top'), 10);
  74. if (!isNaN(bodyToTop)) {
  75. optsTop += bodyToTop;
  76. }
  77. //计算停在底部的距离
  78. if (!isNaN(opts.endPos)) {
  79. toBottom = opts.endPos;
  80. } else {
  81. toBottom = parseFloat(documentHeight - $(opts.endPos).offset().top);
  82. }
  83. //计算需要滚动的高度以及停止滚动的高度
  84. ScrollHeight = parseFloat(documentHeight - toBottom - optsTop), endfix = parseFloat(ScrollHeight - outerHeight);
  85. //计算顶部的距离值
  86. if (startTop[0]) {
  87. var startTopOffset = startTop.offset(),
  88. startTopPos = startTopOffset.top;
  89. selfTop = startTopPos;
  90. }
  91. if (startBottom[0]) {
  92. var startBottomOffset = startBottom.offset(),
  93. startBottomPos = startBottomOffset.top,
  94. startBottomHeight = startBottom.outerHeight();
  95. selfTop = parseFloat(startBottomPos + startBottomHeight);
  96. }
  97. toTop = selfTop - optsTop;
  98. toTop = (toTop > 0) ? toTop : 0;
  99. var selfBottom = documentHeight - selfTop - outerHeight;
  100. //如果滚动停在底部的值不为0,并且自身到底部的高度小于上面这个值,不执行浮动固定
  101. if ((toBottom != 0) && (selfBottom <= toBottom)) {
  102. return;
  103. }
  104. }
  105. function setUnfixed() {
  106. if (!isUnfixed) {
  107. lastOffsetLeft = -1;
  108. placeholder.css("display", "none");
  109. obj.css({
  110. 'z-index': originalZIndex,
  111. 'width': '',
  112. 'position': originalPosition,
  113. 'left': '',
  114. 'top': originalOffsetTop,
  115. 'margin-left': ''
  116. });
  117. obj.removeClass('scrollfixed');
  118. isUnfixed = true;
  119. }
  120. }
  121. function onScroll() {
  122. lastOffsetLeft = 1;
  123. var ScrollTop = $(window).scrollTop();
  124. if (opts.bottom != -1) {
  125. ScrollTop = ScrollTop + $(window).height() - outerHeight - opts.bottom;
  126. }
  127. if (ScrollTop > toTop && (ScrollTop < endfix)) {
  128. if (ie6) { //IE6则使用这个样式
  129. obj.addClass(opts.baseClassName).css({
  130. "z-index": zIndex,
  131. "position": "absolute",
  132. "top": opts.bottom == -1 ? ScrollTop + optsTop - parentOffsetTop : ScrollTop - parentOffsetTop,
  133. "bottom": 'auto',
  134. "left": selfLeft - parentOffsetLeft,
  135. 'width': objWidth
  136. })
  137. } else {
  138. obj.addClass(opts.baseClassName).css({
  139. "z-index": zIndex,
  140. "position": "fixed",
  141. "top": opts.bottom == -1 ? optsTop : '',
  142. "bottom": opts.bottom == -1 ? '' : opts.bottom,
  143. "left": selfLeft,
  144. "width": objWidth
  145. });
  146. }
  147. placeholder.css({
  148. 'height': outerHeight,
  149. 'width': outerWidth,
  150. 'display': 'block'
  151. }).insertBefore(obj);
  152. } else if (ScrollTop >= endfix) {
  153. obj.addClass(opts.baseClassName).css({
  154. "z-index": zIndex,
  155. "position": "absolute",
  156. "top": endfix - parentOffsetTop + optsTop,
  157. 'bottom': '',
  158. "left": selfLeft - parentOffsetLeft,
  159. "width": objWidth
  160. });
  161. placeholder.css({
  162. 'height': outerHeight,
  163. 'width': outerWidth,
  164. 'display': 'block'
  165. }).insertBefore(obj)
  166. } else {
  167. obj.removeClass(opts.baseClassName).css({
  168. "z-index": originalZIndex,
  169. "position": "static",
  170. "top": "",
  171. "bottom": "",
  172. "left": ""
  173. });
  174. placeholder.remove()
  175. }
  176. }
  177. var Timer = 0;
  178. // if (isUnfixed) {
  179. resetScroll();
  180. // }
  181. $(window).on("scroll", function() {
  182. if (Timer) {
  183. clearTimeout(Timer);
  184. }
  185. Timer = setTimeout(onScroll, 0);
  186. });
  187. // 当发现调整屏幕大小时,重新执行代码
  188. $(window).on("resize", function() {
  189. if (Timer) {
  190. clearTimeout(Timer);
  191. }
  192. Timer = setTimeout(function() {
  193. isUnfixed = false;
  194. resetScroll();
  195. onScroll();
  196. }, 0);
  197. });
  198. })
  199. }
  200. $.fn.scrollFix.defaultOptions = {
  201. startTop: null, //滑到这个位置顶部时开始浮动,默认为空
  202. startBottom: null, //滑到这个位置末端开始浮动,默认为空
  203. distanceTop: 0, //固定在顶部的高度
  204. endPos: 0, //停靠在底部的位置,可以为jquery对象
  205. bottom: -1, //底部位置
  206. zIndex: 0, //z-index值
  207. baseClassName: 'scrollfixed' //开始固定时添加的类
  208. };
  209. })(jQuery);