您现在的位置: 365建站网 > 365文章 > 基于iscroll.js实现下拉刷新和上拉加载更多效果

基于iscroll.js实现下拉刷新和上拉加载更多效果

文章来源:365jz.com     点击数:492    更新时间:2017-08-11 09:38   参与评论

前一段有个手机端的项目需要用到下拉刷新和上拉加载更多的效果,脑海里第一反映就是微博那种效果,刚开始的理解有些偏差,以为下拉也是追加数据,上拉也是追加数据,后请教同事后发现其实下拉只是刷新最新数据而已,上拉是追加数据。

使用技巧

      1、引用iScroll.js, 在初始化时添加两个事件监听:touchMove、DOMContentLoaded。

      2、实现iScroll插件的onScrollEnd事件, 也就是在这个事件里调用你自己的ajax方法实现数据的刷新和追加。

      3、上拉加载更多请求后台时就相当于分页请求数据,这时候需要在ajax请求时发送pageIndex参数,而初始化加载时需要从后台返回一个pageCount以便前台判断。

      4、最关键的就是实现下拉刷新方法(pullDownAction)和上拉加载更多(pullUpAction)方法。



现在已经不是纯Android独霸天下的时代了,H5嵌入Android的Hybrid混合开发是大势所趋。今天给大家带来的就是移动端中常见的“上拉刷新,下拉加载”特效,这个特效将会基于H5来实现。

先看下运行效果:

是不是有点小小的‘鸡冻' ,它就是由我们今天要介绍的主人公‘iscroll.js'实现的,接下来我以最最简便的方式教给大家~~

实现步骤

一、准备好iscroll.js库

到官网下载即可:
https://github.com/cubiq/iscroll

二、搭建页面结构

</>code

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <title>iScroll 实例:下拉刷新,滚动翻页</title>
  9. <style type="text/css" media="all">
  10. body,ul,li {
  11. padding:0;
  12. margin:0;
  13. border:0;
  14. }
  15. body {
  16. font-size:12px;
  17. -webkit-user-select:none;
  18. -webkit-text-size-adjust:none;
  19. font-family:helvetica;
  20. }
  21. #header {
  22. position:absolute;
  23. top:0; left:0;
  24. width:100%;
  25. height:45px;
  26. line-height:45px;
  27. background-image:-webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fe96c9), color-stop(0.05, #d51875), color-stop(1, #7b0a2e));
  28. background-image:-moz-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
  29. background-image:-o-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
  30. padding:0;
  31. color:#eee;
  32. font-size:20px;
  33. text-align:center;
  34. }
  35. #header a {
  36. color:#f3f3f3;
  37. text-decoration:none;
  38. font-weight:bold;
  39. text-shadow:0 -1px 0 rgba(0,0,0,0.5);
  40. }
  41. #footer {
  42. position:absolute;
  43. bottom:0; left:0;
  44. width:100%;
  45. height:48px;
  46. background-image:-webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #999), color-stop(0.02, #666), color-stop(1, #222));
  47. background-image:-moz-linear-gradient(top, #999, #666 2%, #222);
  48. background-image:-o-linear-gradient(top, #999, #666 2%, #222);
  49. padding:0;
  50. border-top:1px solid #444;
  51. }
  52. #wrapper {
  53. position:absolute; z-index:1;
  54. top:45px; bottom:48px; left:0;
  55. width:100%;
  56. background:#555;
  57. overflow:auto;
  58. }
  59. #scroller {
  60. position:relative;
  61. /* -webkit-touch-callout:none;*/
  62. -webkit-tap-highlight-color:rgba(0,0,0,0);
  63. float:left;
  64. width:100%;
  65. padding:0;
  66. }
  67. #scroller ul {
  68. position:relative;
  69. list-style:none;
  70. padding:0;
  71. margin:0;
  72. width:100%;
  73. text-align:left;
  74. }
  75. #scroller li {
  76. padding:0 10px;
  77. height:40px;
  78. line-height:40px;
  79. border-bottom:1px solid #ccc;
  80. border-top:1px solid #fff;
  81. background-color:#fafafa;
  82. font-size:14px;
  83. }
  84. #scroller li > a {
  85. display:block;
  86. }
  87. /**
  88. *
  89. * 下拉样式 Pull down styles
  90. *
  91. */
  92. #pullDown, #pullUp {
  93. background:#fff;
  94. height:40px;
  95. line-height:40px;
  96. padding:5px 10px;
  97. border-bottom:1px solid #ccc;
  98. font-weight:bold;
  99. font-size:14px;
  100. color:#888;
  101. }
  102. #pullDown .pullDownIcon, #pullUp .pullUpIcon {
  103. display:block; float:left;
  104. width:40px; height:40px;
  105. background:url(pull-icon@2x.png) 0 0 no-repeat;
  106. -webkit-background-size:40px 80px; background-size:40px 80px;
  107. -webkit-transition-property:-webkit-transform;
  108. -webkit-transition-duration:250ms;
  109. }
  110. #pullDown .pullDownIcon {
  111. -webkit-transform:rotate(0deg) translateZ(0);
  112. }
  113. #pullUp .pullUpIcon {
  114. -webkit-transform:rotate(-180deg) translateZ(0);
  115. }
  116. </style>
  117. </head>
  118. <body>
  119. <div id="header">
  120. <a href="../db.html#page2">iScroll实例:下拉刷新,滚动翻页</a>
  121. </div>
  122. <div id="wrapper">
  123. <div id="scroller">
  124. <div id="pullDown">
  125. <span class="pullDownIcon"></span><span class="pullDownLabel">下拉刷新...</span>
  126. </div>
  127. <ul id="thelist">
  128. <li>我是三冰 1</li>
  129. <li>我是三冰 2</li>
  130. <li>我是三冰 3</li>
  131. <li>我是三冰 4</li>
  132. <li>我是三冰 5</li>
  133. <li>我是三冰 6</li>
  134. <li>我是三冰 7</li>
  135. <li>我是三冰 8</li>
  136. <li>我是三冰 9</li>
  137. <li>我是三冰 10</li>
  138. <li>我是三冰 11</li>
  139. <li>我是三冰 12</li>
  140. <li>我是三冰 13</li>
  141. </ul>
  142. <div id="pullUp">
  143. <span class="pullUpIcon"></span><span class="pullUpLabel">上拉加载更多...</span>
  144. </div>
  145. </div>
  146. </div>
  147. <div id="footer"></div>
  148. </body>
  149. </html>

代码非常简单,无需多言,仅仅搭建一个静态结构而已~~

效果如下:

对照这个效果图看上面代码简直太easy,暂时与iscroll没有半毛钱关系,就是纯静态页面,此时你们唯一没有就是下面这个小图标,不用着急,文章最后会给到你的~~

二、完整Js代码

</>code

  1. <script type="application/javascript" src="iscroll.js"></script>
  2. <script type="text/javascript">
  3. var myScroll,
  4. pullDownEl, pullDownOffset,
  5. pullUpEl, pullUpOffset,
  6. generatedCount = 0;
  7. /**
  8. * 下拉刷新 (自定义实现此方法)
  9. * myScroll.refresh(); // 数据加载完成后,调用界面更新方法
  10. */
  11. function pullDownAction () {
  12. setTimeout(function () { // <-- Simulate network congestion, remove setTimeout from production!
  13. var el, li, i;
  14. el = document.getElementById('thelist');
  15. for (i=0; i<3; i++) {
  16. li = document.createElement('li');
  17. li.innerText = '添加三冰 ' + (++generatedCount);
  18. el.insertBefore(li, el.childNodes[0]);
  19. }
  20. myScroll.refresh(); //数据加载完成后,调用界面更新方法 Remember to refresh when contents are loaded (ie: on ajax completion)
  21. }, 1000); // <-- Simulate network congestion, remove setTimeout from production!
  22. }
  23. /**
  24. * 滚动翻页 (自定义实现此方法)
  25. * myScroll.refresh(); // 数据加载完成后,调用界面更新方法
  26. */
  27. function pullUpAction () {
  28. setTimeout(function () { // <-- Simulate network congestion, remove setTimeout from production!
  29. var el, li, i;
  30. el = document.getElementById('thelist');
  31. for (i=0; i<3; i++) {
  32. li = document.createElement('li');
  33. li.innerText = '添加三冰 ' + (++generatedCount);
  34. el.appendChild(li, el.childNodes[0]);
  35. }
  36. myScroll.refresh(); // 数据加载完成后,调用界面更新方法 Remember to refresh when contents are loaded (ie: on ajax completion)
  37. }, 1000); // <-- Simulate network congestion, remove setTimeout from production!
  38. }
  39. /**
  40. * 初始化iScroll控件
  41. */
  42. function loaded() {
  43. pullDownEl = document.getElementById('pullDown');
  44. pullDownOffset = pullDownEl.offsetHeight;
  45. pullUpEl = document.getElementById('pullUp');
  46. pullUpOffset = pullUpEl.offsetHeight;
  47. myScroll = new iScroll('wrapper', {
  48. scrollbarClass: 'myScrollbar', /* 重要样式 */
  49. useTransition: false, /* 此属性不知用意,本人从true改为false */
  50. topOffset: pullDownOffset,
  51. onRefresh: function () {
  52. if (pullDownEl.className.match('loading')) {
  53. pullDownEl.className = '';
  54. pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
  55. } else if (pullUpEl.className.match('loading')) {
  56. pullUpEl.className = '';
  57. pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉加载更多...';
  58. }
  59. },
  60. onScrollMove: function () {
  61. if (this.y > 5 && !pullDownEl.className.match('flip')) {
  62. pullDownEl.className = 'flip';
  63. pullDownEl.querySelector('.pullDownLabel').innerHTML = '松手开始更新...';
  64. this.minScrollY = 0;
  65. } else if (this.y < 5 && pullDownEl.className.match('flip')) {
  66. pullDownEl.className = '';
  67. pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
  68. this.minScrollY = -pullDownOffset;
  69. } else if (this.y < (this.maxScrollY - 5) && !pullUpEl.className.match('flip')) {
  70. pullUpEl.className = 'flip';
  71. pullUpEl.querySelector('.pullUpLabel').innerHTML = '松手开始更新...';
  72. this.maxScrollY = this.maxScrollY;
  73. } else if (this.y > (this.maxScrollY + 5) && pullUpEl.className.match('flip')) {
  74. pullUpEl.className = '';
  75. pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉加载更多...';
  76. this.maxScrollY = pullUpOffset;
  77. }
  78. },
  79. onScrollEnd: function () {
  80. if (pullDownEl.className.match('flip')) {
  81. pullDownEl.className = 'loading';
  82. pullDownEl.querySelector('.pullDownLabel').innerHTML = '加载中...';
  83. pullDownAction(); // Execute custom function (ajax call?)
  84. } else if (pullUpEl.className.match('flip')) {
  85. pullUpEl.className = 'loading';
  86. pullUpEl.querySelector('.pullUpLabel').innerHTML = '加载中...';
  87. pullUpAction(); // Execute custom function (ajax call?)
  88. }
  89. }
  90. });
  91. setTimeout(function () { document.getElementById('wrapper').style.left = '0'; }, 800);
  92. }
  93. //初始化绑定iScroll控件
  94. document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
  95. document.addEventListener('DOMContentLoaded', loaded, false);
  96. </script>

这么多代码看啊,不用着急,挑几个重点给你说说:

1)onRefresh函数是指页面刷新或调用refresh()函数会触发此函数,里面代码中主要做【一些重置样式和文字】的处理。

2)onScrollMove函数是指拖拽页面,不松手的时候会触发此函数,里面代码中主要做【箭头有个旋转效果和松手提示】的处理。

3)onScrollEnd函数是指松开手,停止拖拽的时候会触发的函数,里面代码中主要做【刷新数据和一些加载动画效果】的处理。

4)topOffset属性主要是可以隐藏一个高度,正好把下拉刷新给隐藏掉

5)函数pullDownAction和pullUpAction中,我是自己用createElement函数造数据,但是真实开发中,这里可以换成Ajax请求服务器数据即可

看看现在的效果如何:

现在数据什么的都能刷新了,只差那么一点点,如果下拉和上拉的时候,加载的小图标有个动画效果那就超级“完美”了:

既然是要来点动画效果,肯定是用最新的CSS3技术呀,废话不多说,直接贴完整代码了:

</>code

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <title>iScroll 实例:下拉刷新,滚动翻页</title>
  9. <style type="text/css" media="all">
  10. body,ul,li {
  11. padding:0;
  12. margin:0;
  13. border:0;
  14. }
  15. body {
  16. font-size:12px;
  17. -webkit-user-select:none;
  18. -webkit-text-size-adjust:none;
  19. font-family:helvetica;
  20. }
  21. #header {
  22. position:absolute;
  23. top:0; left:0;
  24. width:100%;
  25. height:45px;
  26. line-height:45px;
  27. background-image:-webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fe96c9), color-stop(0.05, #d51875), color-stop(1, #7b0a2e));
  28. background-image:-moz-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
  29. background-image:-o-linear-gradient(top, #fe96c9, #d51875 5%, #7b0a2e);
  30. padding:0;
  31. color:#eee;
  32. font-size:20px;
  33. text-align:center;
  34. }
  35. #header a {
  36. color:#f3f3f3;
  37. text-decoration:none;
  38. font-weight:bold;
  39. text-shadow:0 -1px 0 rgba(0,0,0,0.5);
  40. }
  41. #footer {
  42. position:absolute;
  43. bottom:0; left:0;
  44. width:100%;
  45. height:48px;
  46. background-image:-webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #999), color-stop(0.02, #666), color-stop(1, #222));
  47. background-image:-moz-linear-gradient(top, #999, #666 2%, #222);
  48. background-image:-o-linear-gradient(top, #999, #666 2%, #222);
  49. padding:0;
  50. border-top:1px solid #444;
  51. }
  52. #wrapper {
  53. position:absolute; z-index:1;
  54. top:45px; bottom:48px; left:0;
  55. width:100%;
  56. background:#555;
  57. overflow:auto;
  58. }
  59. #scroller {
  60. position:relative;
  61. /* -webkit-touch-callout:none;*/
  62. -webkit-tap-highlight-color:rgba(0,0,0,0);
  63. float:left;
  64. width:100%;
  65. padding:0;
  66. }
  67. #scroller ul {
  68. position:relative;
  69. list-style:none;
  70. padding:0;
  71. margin:0;
  72. width:100%;
  73. text-align:left;
  74. }
  75. #scroller li {
  76. padding:0 10px;
  77. height:40px;
  78. line-height:40px;
  79. border-bottom:1px solid #ccc;
  80. border-top:1px solid #fff;
  81. background-color:#fafafa;
  82. font-size:14px;
  83. }
  84. #scroller li > a {
  85. display:block;
  86. }
  87. /**
  88. *
  89. * 下拉样式 Pull down styles
  90. *
  91. */
  92. #pullDown, #pullUp {
  93. background:#fff;
  94. height:40px;
  95. line-height:40px;
  96. padding:5px 10px;
  97. border-bottom:1px solid #ccc;
  98. font-weight:bold;
  99. font-size:14px;
  100. color:#888;
  101. }
  102. #pullDown .pullDownIcon, #pullUp .pullUpIcon {
  103. display:block; float:left;
  104. width:40px; height:40px;
  105. background:url(pull-icon@2x.png) 0 0 no-repeat;
  106. -webkit-background-size:40px 80px; background-size:40px 80px;
  107. -webkit-transition-property:-webkit-transform;
  108. -webkit-transition-duration:250ms;
  109. }
  110. #pullDown .pullDownIcon {
  111. -webkit-transform:rotate(0deg) translateZ(0);
  112. }
  113. #pullUp .pullUpIcon {
  114. -webkit-transform:rotate(-180deg) translateZ(0);
  115. }
  116. /**
  117. * 动画效果css3代码
  118. */
  119. #pullDown.flip .pullDownIcon {
  120. -webkit-transform:rotate(-180deg) translateZ(0);
  121. }
  122. #pullUp.flip .pullUpIcon {
  123. -webkit-transform:rotate(0deg) translateZ(0);
  124. }
  125. #pullDown.loading .pullDownIcon, #pullUp.loading .pullUpIcon {
  126. background-position:0 100%;
  127. -webkit-transform:rotate(0deg) translateZ(0);
  128. -webkit-transition-duration:0ms;
  129. -webkit-animation-name:loading;
  130. -webkit-animation-duration:2s;
  131. -webkit-animation-iteration-count:infinite;
  132. -webkit-animation-timing-function:linear;
  133. }
  134. @-webkit-keyframes loading {
  135. from { -webkit-transform:rotate(0deg) translateZ(0); }
  136. to { -webkit-transform:rotate(360deg) translateZ(0); }
  137. }
  138. </style>
  139. </head>
  140. <body>
  141. <div id="header">
  142. <a href="../db.html#page2">iScroll实例:下拉刷新,滚动翻页</a>
  143. </div>
  144. <div id="wrapper">
  145. <div id="scroller">
  146. <div id="pullDown">
  147. <span class="pullDownIcon"></span><span class="pullDownLabel">下拉刷新...</span>
  148. </div>
  149. <ul id="thelist">
  150. <li>我是三冰 1</li>
  151. <li>我是三冰 2</li>
  152. <li>我是三冰 3</li>
  153. <li>我是三冰 4</li>
  154. <li>我是三冰 5</li>
  155. <li>我是三冰 6</li>
  156. <li>我是三冰 7</li>
  157. <li>我是三冰 8</li>
  158. <li>我是三冰 9</li>
  159. <li>我是三冰 10</li>
  160. <li>我是三冰 11</li>
  161. <li>我是三冰 12</li>
  162. <li>我是三冰 13</li>
  163. </ul>
  164. <div id="pullUp">
  165. <span class="pullUpIcon"></span><span class="pullUpLabel">上拉加载更多...</span>
  166. </div>
  167. </div>
  168. </div>
  169. <div id="footer"></div>
  170. <script type="application/javascript" src="iscroll.js"></script>
  171. <script type="text/javascript">
  172. var myScroll,
  173. pullDownEl, pullDownOffset,
  174. pullUpEl, pullUpOffset,
  175. generatedCount = 0;
  176. /**
  177. * 下拉刷新 (自定义实现此方法)
  178. * myScroll.refresh(); // 数据加载完成后,调用界面更新方法
  179. */
  180. function pullDownAction () {
  181. setTimeout(function () { // <-- Simulate network congestion, remove setTimeout from production!
  182. var el, li, i;
  183. el = document.getElementById('thelist');
  184. for (i=0; i<3; i++) {
  185. li = document.createElement('li');
  186. li.innerText = '添加三冰 ' + (++generatedCount);
  187. el.insertBefore(li, el.childNodes[0]);
  188. }
  189. myScroll.refresh(); //数据加载完成后,调用界面更新方法 Remember to refresh when contents are loaded (ie: on ajax completion)
  190. }, 1000); // <-- Simulate network congestion, remove setTimeout from production!
  191. }
  192. /**
  193. * 滚动翻页 (自定义实现此方法)
  194. * myScroll.refresh(); // 数据加载完成后,调用界面更新方法
  195. */
  196. function pullUpAction () {
  197. setTimeout(function () { // <-- Simulate network congestion, remove setTimeout from production!
  198. var el, li, i;
  199. el = document.getElementById('thelist');
  200. for (i=0; i<3; i++) {
  201. li = document.createElement('li');
  202. li.innerText = '添加三冰 ' + (++generatedCount);
  203. el.appendChild(li, el.childNodes[0]);
  204. }
  205. myScroll.refresh(); // 数据加载完成后,调用界面更新方法 Remember to refresh when contents are loaded (ie: on ajax completion)
  206. }, 1000); // <-- Simulate network congestion, remove setTimeout from production!
  207. }
  208. /**
  209. * 初始化iScroll控件
  210. */
  211. function loaded() {
  212. pullDownEl = document.getElementById('pullDown');
  213. pullDownOffset = pullDownEl.offsetHeight;
  214. pullUpEl = document.getElementById('pullUp');
  215. pullUpOffset = pullUpEl.offsetHeight;
  216. myScroll = new iScroll('wrapper', {
  217. scrollbarClass: 'myScrollbar', /* 重要样式 */
  218. useTransition: false, /* 此属性不知用意,本人从true改为false */
  219. topOffset: pullDownOffset,
  220. onRefresh: function () {
  221. if (pullDownEl.className.match('loading')) {
  222. pullDownEl.className = '';
  223. pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
  224. } else if (pullUpEl.className.match('loading')) {
  225. pullUpEl.className = '';
  226. pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉加载更多...';
  227. }
  228. },
  229. onScrollMove: function () {
  230. if (this.y > 5 && !pullDownEl.className.match('flip')) {
  231. pullDownEl.className = 'flip';
  232. pullDownEl.querySelector('.pullDownLabel').innerHTML = '松手开始更新...';
  233. this.minScrollY = 0;
  234. } else if (this.y < 5 && pullDownEl.className.match('flip')) {
  235. pullDownEl.className = '';
  236. pullDownEl.querySelector('.pullDownLabel').innerHTML = '下拉刷新...';
  237. this.minScrollY = -pullDownOffset;
  238. } else if (this.y < (this.maxScrollY - 5) && !pullUpEl.className.match('flip')) {
  239. pullUpEl.className = 'flip';
  240. pullUpEl.querySelector('.pullUpLabel').innerHTML = '松手开始更新...';
  241. this.maxScrollY = this.maxScrollY;
  242. } else if (this.y > (this.maxScrollY + 5) && pullUpEl.className.match('flip')) {
  243. pullUpEl.className = '';
  244. pullUpEl.querySelector('.pullUpLabel').innerHTML = '上拉加载更多...';
  245. this.maxScrollY = pullUpOffset;
  246. }
  247. },
  248. onScrollEnd: function () {
  249. if (pullDownEl.className.match('flip')) {
  250. pullDownEl.className = 'loading';
  251. pullDownEl.querySelector('.pullDownLabel').innerHTML = '加载中...';
  252. pullDownAction(); // Execute custom function (ajax call?)
  253. } else if (pullUpEl.className.match('flip')) {
  254. pullUpEl.className = 'loading';
  255. pullUpEl.querySelector('.pullUpLabel').innerHTML = '加载中...';
  256. pullUpAction(); // Execute custom function (ajax call?)
  257. }
  258. }
  259. });
  260. setTimeout(function () { document.getElementById('wrapper').style.left = '0'; }, 800);
  261. }
  262. //初始化绑定iScroll控件
  263. document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
  264. document.addEventListener('DOMContentLoaded', loaded, false);
  265. </script>
  266. </body>
  267. </html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (492人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号