index.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>你能精准地按出一秒吗?</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
  7. <script type="text/javascript" src="js/cashj.js"></script>
  8. <style type="text/css">
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. }
  13. html,
  14. body {
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. }
  19. body {
  20. background: url(images/cashtop_bg01.jpg) repeat;
  21. }
  22. #box {
  23. width: 100%;
  24. height: 100%;
  25. background: url(images/cashtop_bg01.jpg) repeat;
  26. overflow: hidden;
  27. text-align: center;
  28. }
  29. #top {
  30. width: 200px;
  31. height: 110px;
  32. background: url(images/cashsecond_logo.png);
  33. background-size: 100% 100%;
  34. margin: 10% auto 0
  35. }
  36. #box h1 {
  37. font-size: 16px;
  38. font-weight: normal;
  39. padding: 10px;
  40. color: #666;
  41. }
  42. #content {
  43. width: 280px;
  44. background: #fff;
  45. border-radius: 20px;
  46. margin: 0 auto;
  47. line-height: 24px;
  48. padding: 5px 3px;
  49. color: #666;
  50. font-size: 18px;
  51. }
  52. #content h2 {
  53. font-size: 24px;
  54. display: inline;
  55. color: #f5484b;
  56. }
  57. #btn_bg {
  58. width: 110px;
  59. height: 110px;
  60. border-radius: 55px;
  61. background: #eee;
  62. margin: 10px auto;
  63. position: relative;
  64. border: 1px solid #f0d0d0;
  65. }
  66. #btn_bt {
  67. width: 90px;
  68. height: 90px;
  69. border-radius: 45px;
  70. background: #f5484b;
  71. line-height: 90px;
  72. position: absolute;
  73. top: 10px;
  74. left: 10px;
  75. border: 0;
  76. }
  77. #btn_bt span {
  78. color: #fff;
  79. font-size: 24px;
  80. }
  81. .active {
  82. -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.4) inset;
  83. -ms-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.4) inset;
  84. box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.4) inset;
  85. }
  86. #box a {
  87. border-radius: 5px;
  88. background-color: rgb(228, 103, 106);
  89. display: block;
  90. width: 120px;
  91. height: 20px;
  92. padding: 5px;
  93. text-decoration: none;
  94. font-size: 16px;
  95. color: #fff;
  96. margin: 0 auto;
  97. margin-top: 10px;
  98. }
  99. #share {
  100. width: 100%;
  101. height: 100%;
  102. background: rgba(0, 0, 0, 0.9) url(images/cashsecond_share.png) no-repeat;
  103. background-position: top right;
  104. position: absolute;
  105. top: 0;
  106. right: 0;
  107. z-index: 99;
  108. display: none;
  109. }
  110. #logo {
  111. width: 80px;
  112. height: 80px;
  113. background: url(cashFiilogo.png);
  114. background-size: 100% 100%;
  115. margin: 10px auto;
  116. }
  117. .footer {
  118. position: fixed;
  119. bottom: 0;
  120. width: 100%;
  121. display: block;
  122. }
  123. .footer img {
  124. display: block;
  125. }
  126. </style>
  127. <div id='wx_pic' style='margin:0 auto;display:none;'>
  128. <img src='images/cashbig_icon.jpg' />
  129. </div>
  130. </head>
  131. <body>
  132. <div id="box">
  133. <div id="top"></div>
  134. <h1>你能精确地按出一秒吗?</h1>
  135. <p id="content"></p>
  136. <div id="btn_bg">
  137. <div id="btn_bt">
  138. <span>按住</span>
  139. </div>
  140. </div>
  141. <a style="margin-top:20px" id="share_a" href="#">炫耀一下</a>
  142. <div id="share"></div>
  143. </div>
  144. <a class="footer" href="http://mp.weixin.qq.com/s?__biz=MzI4MjA2MjE0MQ==&mid=246005295&idx=1&sn=490f8141976d607ba079d48f52a3fcd7#rd" target="_blank">
  145. <img src="images/123456.png" width="100%" />
  146. </a>
  147. <div style="display:none;">
  148. 这里放统计代码
  149. </div>
  150. </body>
  151. </html>