ka.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <?php
  2. include_once("untils/conn.php");
  3. $sql = "SELECT * FROM system WHERE type = 'banner'";
  4. $result = mysqli_query($con, $sql);
  5. if ($result->num_rows > 0) {
  6. // 输出数据
  7. while($row = $result->fetch_assoc()) {
  8. // 获取每个字段的值
  9. $banner = $row["banner"];
  10. $link = $row["link"];
  11. $banner_one = $row["banner_one"];
  12. $link_one = $row["link_one"];
  13. $banner_two = $row["banner_two"];
  14. $link_two = $row["link_two"];
  15. }
  16. } else {
  17. // echo "未找到匹配的记录";
  18. }
  19. ?>
  20. <!DOCTYPE html>
  21. <html lang="en">
  22. <head>
  23. <meta charset="UTF-8">
  24. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  25. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  26. <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maxi-mum-scale=1.0,user-scalable=no" name="viewport" />
  27. <title>号卡中心</title>
  28. <link rel="stylesheet" href="other/main.css">
  29. </head>
  30. <body>
  31. <div class="focus">
  32. <ul>
  33. <li><a href="<?php echo $link ?>" target="_blank"><img src="<?php echo $banner ?>" ></a></li>
  34. <li><a href="<?php echo $link_one ?>" target="_blank"><img src="<?php echo $banner_one ?>"></a></li>
  35. <li><a href="<?php echo $link_two ?>" target="_blank"><img src="<?php echo $banner_two ?>"></a></li>
  36. <li><a href="<?php echo $link ?>" target="_blank"><img src="<?php echo $banner ?>"></a></li>
  37. <li><a href="<?php echo $link_one ?>" target="_blank"><img src="<?php echo $banner_one ?>"></a></li>
  38. </ul>
  39. <!-- 小圆点 -->
  40. <ol>
  41. <li class="current"></li>
  42. <li></li>
  43. <li></li>
  44. </ol>
  45. </div>
  46. <!--公告-->
  47. <div class="gonggao">
  48. <div class="gonggao-left">
  49. <img src="img/gonggao.png">
  50. </div>
  51. <div class="gonggao-right">
  52. 所有套餐需激活首充固定金额才可以享受优惠政策 </div>
  53. <div class="clear"></div>
  54. </div>
  55. <!--导航-->
  56. <?php
  57. include_once("untils/conn.php");
  58. $sql = "SELECT * FROM kefu";
  59. $result = mysqli_query($con, $sql);
  60. if ($result->num_rows > 0) {
  61. // 输出数据
  62. while($row = $result->fetch_assoc()) {
  63. // 获取每个字段的值
  64. $chaxun = $row["chaxun"];
  65. }
  66. } else {
  67. // echo "未找到匹配的记录";
  68. }
  69. ?>
  70. <!--查询导航-->
  71. <div class="dh" style="height:100px;margin-top:8px; display: flex;">
  72. <a href="odersearch.php" style="float:left; flex: 1;">
  73. <img style="float:right; margin-top:40px;width:80px" src="img/cx.png">
  74. <div class="bthcx"style="color: #fff;">订单查询
  75. <div calss="xian" style="width:40px; height:5px; border-radius: 10px; background:#fff"></div>
  76. <div style="margin-top:20px;width: 70px;height: 22px;text-align: center;border-radius: 20px;background: rgba(255, 255, 255, 1); color:#366EF6; font-size: 10px;padding-top: 3px;">立即查询</div>
  77. <!--<img style="float:right;" src="img/cx.png">-->
  78. </div>
  79. </a>
  80. <a href="kf.php" style="float:left; flex: 1;">
  81. <img style="float:right; margin-top:40px;width:80px;margin-right:10px ;" src="img/kf.png">
  82. <div class="bthkf"style="">在线客服
  83. <div calss="xian" style="width:40px; height:5px; border-radius: 10px; background:#fff"></div>
  84. <div style="margin-top:20px;width: 70px;height: 22px;text-align: center;border-radius: 20px;background: rgba(255, 255, 255, 1); color:#366EF6; font-size: 10px;padding-top: 3px;">立即联系</div>
  85. </div>
  86. </a>
  87. </div>
  88. <!--分类-->
  89. <!--<div class="height" style="margin-top: -3px;" ></div>-->
  90. <div class="fenlei">
  91. <div class="banner">限量领取<a class="right" style="float:right">流量领不停 免费送到家</a></div>
  92. <div class="navall">
  93. <!--分类结束-->
  94. <!-- PHP获取产品 -->
  95. <?php
  96. include_once("untils/conn.php");
  97. mysqli_query($con, "set names utf8");
  98. $yysname = $_GET['yys'];
  99. if ($con) {
  100. //选择数据库
  101. if ($db) {
  102. //获取数据总行数
  103. $sql = "select * from list where yys='$yysname' AND state=0 ORDER BY id DESC";
  104. // $sqlid ="select * from list";
  105. $sortsql = "select * from sort ORDER BY sortid DESC";
  106. $data = mysqli_query($con, $sql);
  107. $sortdata = mysqli_query($con, $sortsql);
  108. ?> <ul class="box">
  109. <?php
  110. while ($sortrow = mysqli_fetch_array($sortdata)) {
  111. ?> <?php $dqid = $sortrow["yys"] ?>
  112. <li class="cat_child">
  113. <a href="?yys=<?php echo $sortrow["yys"] ?>" class="<?php echo $yysname == $dqid ? 'active' : '' ?>"><?php echo $sortrow["yys"] ?></a>
  114. </li>
  115. <?php
  116. }
  117. ?>
  118. </ul>
  119. <?php
  120. while ($row = mysqli_fetch_array($data)) {
  121. ?>
  122. <div class="alllist">
  123. <img class="alllistl" src="<?php echo $row["zhutu"] ?>" onclick="javascript:location.href='link.php?id=<?php echo $row["id"]; ?>'" />
  124. <div class="alllistc" onclick="javascript:location.href='link.php?id=<?php echo $row["id"]; ?>'">
  125. <div class="listc1 ellipse1"><span class="shouquan">授权专营</span><?php echo $row["name"] ?></div>
  126. <div class="listc1 ellipse1"><other><?php echo $row["other"] ?></other><time><?php echo $row["ltime"] ?></time>
  127. <empty><?php echo $row["xuanhao"] ?></empty>
  128. </div>
  129. <div class="listc2 ellipse1"><span><?php echo $row["jieshao"] ?></span></div>
  130. <div class="pull-left"><span class="baoyou"><?php echo $row["baoyou"] ?></div>
  131. </div>
  132. <div class="alllistr1" onclick="javascript:location.href='link.php?id=<?php echo $row["id"]; ?>'">
  133. 立即领取</div>
  134. </div>
  135. <?php
  136. }
  137. }
  138. }
  139. ?>
  140. </div>
  141. </div>
  142. <input type="hidden" id="is_login" value="-1">
  143. <div class="bottom1">
  144. <div class="height1"></div>
  145. </div>
  146. </body>
  147. <script>
  148. /** @format */
  149. window.addEventListener('load', function() {
  150. // alert(1);
  151. // 1. 获取元素
  152. var focus = document.querySelector('.focus');
  153. var ul = focus.children[0];
  154. // 获得focus 的宽度
  155. var w = focus.offsetWidth;
  156. var ol = focus.children[1];
  157. // 2. 利用定时器自动轮播图图片
  158. var index = 0;
  159. var timer = setInterval(function() {
  160. index++;
  161. var translatex = -index * w;
  162. ul.style.transition = 'all .3s';
  163. ul.style.transform = 'translateX(' + translatex + 'px)';
  164. }, 2000);
  165. // 等着我们过渡完成之后,再去判断 监听过渡完成的事件 transitionend
  166. ul.addEventListener('transitionend', function() {
  167. // 无缝滚动
  168. if (index >= 3) {
  169. index = 0;
  170. // console.log(index);
  171. // 去掉过渡效果 这样让我们的ul 快速的跳到目标位置
  172. ul.style.transition = 'none';
  173. // 利用最新的索引号乘以宽度 去滚动图片
  174. var translatex = -index * w;
  175. ul.style.transform = 'translateX(' + translatex + 'px)';
  176. } else if (index < 0) {
  177. index = 2;
  178. ul.style.transition = 'none';
  179. // 利用最新的索引号乘以宽度 去滚动图片
  180. var translatex = -index * w;
  181. ul.style.transform = 'translateX(' + translatex + 'px)';
  182. }
  183. // 3. 小圆点跟随变化
  184. // 把ol里面li带有current类名的选出来去掉类名 remove
  185. ol.querySelector('.current').classList.remove('current');
  186. // 让当前索引号 的小li 加上 current add
  187. ol.children[index].classList.add('current');
  188. });
  189. // 4. 手指滑动轮播图
  190. // 触摸元素 touchstart: 获取手指初始坐标
  191. var startX = 0;
  192. var moveX = 0; // 后面我们会使用这个移动距离所以要定义一个全局变量
  193. var flag = false;
  194. ul.addEventListener('touchstart', function(e) {
  195. startX = e.targetTouches[0].pageX;
  196. // 手指触摸的时候就停止定时器
  197. clearInterval(timer);
  198. });
  199. // 移动手指 touchmove: 计算手指的滑动距离, 并且移动盒子
  200. ul.addEventListener('touchmove', function(e) {
  201. // 计算移动距离
  202. moveX = e.targetTouches[0].pageX - startX;
  203. // 移动盒子: 盒子原来的位置 + 手指移动的距离
  204. var translatex = -index * w + moveX;
  205. // 手指拖动的时候,不需要动画效果所以要取消过渡效果
  206. ul.style.transition = 'none';
  207. ul.style.transform = 'translateX(' + translatex + 'px)';
  208. flag = true; // 如果用户手指移动过我们再去判断否则不做判断效果
  209. e.preventDefault(); // 阻止滚动屏幕的行为
  210. });
  211. // 手指离开 根据移动距离去判断是回弹还是播放上一张下一张
  212. ul.addEventListener('touchend', function(e) {
  213. if (flag) {
  214. // (1) 如果移动距离大于50像素我们就播放上一张或者下一张
  215. if (Math.abs(moveX) > 50) {
  216. // 如果是右滑就是 播放上一张 moveX 是正值
  217. if (moveX > 0) {
  218. index--;
  219. } else {
  220. // 如果是左滑就是 播放下一张 moveX 是负值
  221. index++;
  222. }
  223. var translatex = -index * w;
  224. ul.style.transition = 'all .3s';
  225. ul.style.transform = 'translateX(' + translatex + 'px)';
  226. } else {
  227. // (2) 如果移动距离小于50像素我们就回弹
  228. var translatex = -index * w;
  229. ul.style.transition = 'all .1s';
  230. ul.style.transform = 'translateX(' + translatex + 'px)';
  231. }
  232. }
  233. // 手指离开的时候就重新开启定时器
  234. clearInterval(timer);
  235. timer = setInterval(function() {
  236. index++;
  237. var translatex = -index * w;
  238. ul.style.transition = 'all .3s';
  239. ul.style.transform = 'translateX(' + translatex + 'px)';
  240. }, 2000);
  241. });
  242. });
  243. </script>
  244. </html>