su-sticky.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <view class="u-sticky" :id="elId" :style="[style]">
  3. <view :style="[stickyContent]" class="u-sticky__content"><slot /></view>
  4. </view>
  5. </template>
  6. <script>
  7. import { deepMerge, addStyle, addUnit, sleep, guid, getPx, os, sys } from '@/sheep/helper';
  8. import sheep from '@/sheep';
  9. /**
  10. * sticky 吸顶
  11. * @description 该组件与CSS中position: sticky属性实现的效果一致,当组件达到预设的到顶部距离时, 就会固定在指定位置,组件位置大于预设的顶部距离时,会重新按照正常的布局排列。
  12. * @property {String | Number} offsetTop 吸顶时与顶部的距离,单位px(默认 0 )
  13. * @property {String | Number} customNavHeight 自定义导航栏的高度 (h5 默认44 其他默认 0 )
  14. * @property {Boolean} stickyToTop 是否开启吸顶功能 (默认 false )
  15. * @property {String} bgColor 组件背景颜色(默认 '#ffffff' )
  16. * @property {String | Number} zIndex 吸顶时的z-index值
  17. * @property {String | Number} index 自定义标识,用于区分是哪一个组件
  18. * @property {Object} customStyle 组件的样式,对象形式
  19. * @event {Function} fixed 组件吸顶时触发
  20. * @event {Function} unfixed 组件取消吸顶时触发
  21. * @example <u-sticky offsetTop="200"><view>塞下秋来风景异,衡阳雁去无留意</view></u-sticky>
  22. */
  23. export default {
  24. name: 'su-sticky',
  25. props: {
  26. // 吸顶容器到顶部某个距离的时候,进行吸顶,在H5平台,NavigationBar为44px
  27. offsetTop: {
  28. type: [String, Number],
  29. default: 0,
  30. },
  31. // 自定义导航栏的高度
  32. customNavHeight: {
  33. type: [String, Number],
  34. // #ifdef H5
  35. // H5端的导航栏属于“自定义”导航栏的范畴,因为它是非原生的,与普通元素一致
  36. default: 44,
  37. // #endif
  38. // #ifndef H5
  39. default: sheep.$platform.navbar,
  40. // #endif
  41. },
  42. // 是否开启吸顶功能
  43. stickyToTop: {
  44. type: Boolean,
  45. default: false,
  46. },
  47. // 吸顶区域的背景颜色
  48. bgColor: {
  49. type: String,
  50. default: 'transparent',
  51. },
  52. // z-index值
  53. zIndex: {
  54. type: [String, Number],
  55. default: '',
  56. },
  57. // 列表中的索引值
  58. index: {
  59. type: [String, Number],
  60. default: '',
  61. },
  62. customStyle: {
  63. type: [Object, String],
  64. default: () => ({}),
  65. },
  66. },
  67. data() {
  68. return {
  69. cssSticky: false, // 是否使用css的sticky实现
  70. stickyTop: 0, // 吸顶的top值,因为可能受自定义导航栏影响,最终的吸顶值非offsetTop值
  71. elId: guid(),
  72. left: 0, // js模式时,吸顶的内容因为处于postition: fixed模式,为了和原来保持一致的样式,需要记录并重新设置它的left,height,width属性
  73. width: 'auto',
  74. height: 'auto',
  75. fixed: false, // js模式时,是否处于吸顶模式
  76. };
  77. },
  78. computed: {
  79. style() {
  80. const style = {};
  81. if (!this.stickyToTop) {
  82. if (this.cssSticky) {
  83. style.position = 'sticky';
  84. style.zIndex = this.uZindex;
  85. style.top = addUnit(this.stickyTop);
  86. } else {
  87. style.height = this.fixed ? this.height + 'px' : 'auto';
  88. }
  89. } else {
  90. // 无需吸顶时,设置会默认的relative(nvue)和非nvue的static静态模式即可
  91. // #ifdef APP-NVUE
  92. style.position = 'relative';
  93. // #endif
  94. // #ifndef APP-NVUE
  95. style.position = 'static';
  96. // #endif
  97. }
  98. style.backgroundColor = this.bgColor;
  99. return deepMerge(addStyle(this.customStyle), style);
  100. },
  101. // 吸顶内容的样式
  102. stickyContent() {
  103. const style = {};
  104. if (!this.cssSticky) {
  105. style.position = this.fixed ? 'fixed' : 'static';
  106. style.top = this.stickyTop + 'px';
  107. style.left = this.left + 'px';
  108. style.width = this.width == 'auto' ? 'auto' : this.width + 'px';
  109. style.zIndex = this.uZindex;
  110. }
  111. return style;
  112. },
  113. uZindex() {
  114. return this.zIndex ? this.zIndex : 970;
  115. },
  116. },
  117. mounted() {
  118. this.init();
  119. },
  120. methods: {
  121. init() {
  122. this.getStickyTop();
  123. // 判断使用的模式
  124. this.checkSupportCssSticky();
  125. // 如果不支持css sticky,则使用js方案,此方案性能比不上css方案
  126. if (!this.cssSticky) {
  127. !this.stickyToTop && this.initObserveContent();
  128. }
  129. },
  130. $uGetRect(selector, all) {
  131. return new Promise((resolve) => {
  132. uni.createSelectorQuery()
  133. .in(this)
  134. [all ? 'selectAll' : 'select'](selector)
  135. .boundingClientRect((rect) => {
  136. if (all && Array.isArray(rect) && rect.length) {
  137. resolve(rect);
  138. }
  139. if (!all && rect) {
  140. resolve(rect);
  141. }
  142. })
  143. .exec();
  144. });
  145. },
  146. initObserveContent() {
  147. // 获取吸顶内容的高度,用于在js吸顶模式时,给父元素一个填充高度,防止"塌陷"
  148. this.$uGetRect('#' + this.elId).then((res) => {
  149. this.height = res.height;
  150. this.left = res.left;
  151. this.width = res.width;
  152. this.$nextTick(() => {
  153. this.observeContent();
  154. });
  155. });
  156. },
  157. observeContent() {
  158. // 先断掉之前的观察
  159. this.disconnectObserver('contentObserver');
  160. const contentObserver = uni.createIntersectionObserver({
  161. // 检测的区间范围
  162. thresholds: [0.95, 0.98, 1],
  163. });
  164. // 到屏幕顶部的高度时触发
  165. contentObserver.relativeToViewport({
  166. top: -this.stickyTop,
  167. });
  168. // 绑定观察的元素
  169. contentObserver.observe(`#${this.elId}`, (res) => {
  170. this.setFixed(res.boundingClientRect.top);
  171. });
  172. this.contentObserver = contentObserver;
  173. },
  174. setFixed(top) {
  175. // 判断是否出于吸顶条件范围
  176. const fixed = top <= this.stickyTop;
  177. this.fixed = fixed;
  178. },
  179. disconnectObserver(observerName) {
  180. // 断掉观察,释放资源
  181. const observer = this[observerName];
  182. observer && observer.disconnect();
  183. },
  184. getStickyTop() {
  185. this.stickyTop = getPx(this.offsetTop) + getPx(this.customNavHeight);
  186. },
  187. async checkSupportCssSticky() {
  188. // #ifdef H5
  189. // H5,一般都是现代浏览器,是支持css sticky的,这里使用创建元素嗅探的形式判断
  190. if (this.checkCssStickyForH5()) {
  191. this.cssSticky = true;
  192. }
  193. // #endif
  194. // 如果安卓版本高于8.0,依然认为是支持css sticky的(因为安卓7在某些机型,可能不支持sticky)
  195. if (os() === 'android' && Number(sys().system) > 8) {
  196. this.cssSticky = true;
  197. }
  198. // APP-Vue和微信平台,通过computedStyle判断是否支持css sticky
  199. // #ifdef APP-VUE || MP-WEIXIN
  200. this.cssSticky = await this.checkComputedStyle();
  201. // #endif
  202. // ios上,从ios6开始,都是支持css sticky的
  203. if (os() === 'ios') {
  204. this.cssSticky = true;
  205. }
  206. // nvue,是支持css sticky的
  207. // #ifdef APP-NVUE
  208. this.cssSticky = true;
  209. // #endif
  210. },
  211. // 在APP和微信小程序上,通过uni.createSelectorQuery可以判断是否支持css sticky
  212. checkComputedStyle() {
  213. // 方法内进行判断,避免在其他平台生成无用代码
  214. // #ifdef APP-VUE || MP-WEIXIN
  215. return new Promise((resolve) => {
  216. uni.createSelectorQuery()
  217. .in(this)
  218. .select('.u-sticky')
  219. .fields({
  220. computedStyle: ['position'],
  221. })
  222. .exec((e) => {
  223. resolve('sticky' === e[0].position);
  224. });
  225. });
  226. // #endif
  227. },
  228. // H5通过创建元素的形式嗅探是否支持css sticky
  229. // 判断浏览器是否支持sticky属性
  230. checkCssStickyForH5() {
  231. // 方法内进行判断,避免在其他平台生成无用代码
  232. // #ifdef H5
  233. const vendorList = ['', '-webkit-', '-ms-', '-moz-', '-o-'],
  234. vendorListLength = vendorList.length,
  235. stickyElement = document.createElement('div');
  236. for (let i = 0; i < vendorListLength; i++) {
  237. stickyElement.style.position = vendorList[i] + 'sticky';
  238. if (stickyElement.style.position !== '') {
  239. return true;
  240. }
  241. }
  242. return false;
  243. // #endif
  244. },
  245. },
  246. beforeDestroy() {
  247. this.disconnectObserver('contentObserver');
  248. },
  249. };
  250. </script>
  251. <style lang="scss" scoped>
  252. .u-sticky {
  253. /* #ifdef APP-VUE || MP-WEIXIN */
  254. // 此处默认写sticky属性,是为了给微信和APP通过uni.createSelectorQuery查询是否支持css sticky使用
  255. position: sticky;
  256. /* #endif */
  257. }
  258. </style>