• 手机打开 第三方 “微信、快手、QQ、电话、信息” 等


    9a69fede8b2044a79dd834e3e48f20b4.png前期回顾

    Vue3 + TS + Element-Plus —— 项目系统中封装表格+搜索表单 十分钟写五个UI不在是问题_vue3 封装table 配置表格-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/m0_57904695/article/details/135538630?spm=1001.2014.3001.5501

    目录

    🤖 下载App如下图所示: 

    🛠️ 网页预览:

    🎉 所有源码(下载功能样式 + 打开引用) 


    我做了两个版本:一个是网页版预览,另一个是app应用,都可以直接下载 

    🤖 下载App如下图所示: 

    App打开其他手机应用 -Demo软件下载

    🛠️ 网页预览:

    新年快乐-打开应用 (webcats.cn)
     

    🎉 所有源码(下载功能样式 + 打开引用) 

    1. html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <title>Chat4移动版下载-彩色之外title>
    7. <style>
    8. .main_back {
    9. position: absolute;
    10. border-radius: 10px;
    11. transform: rotate(90deg);
    12. width: 11em;
    13. height: 11em;
    14. background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
    15. z-index: -2;
    16. box-shadow: inset 0px 0px 180px 5px #ffffff;
    17. }
    18. .cantainer {
    19. display: block;
    20. margin: 50px 0 0 200px;
    21. padding: 15px;
    22. width: fit-content;
    23. height: fit-content;
    24. }
    25. .welcome {
    26. /* 渐变字体 */
    27. background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
    28. -webkit-background-clip: text;
    29. -webkit-text-fill-color: transparent;
    30. font-size: 2.5em;
    31. }
    32. .info {
    33. font-size: 14px;
    34. color: #200505;
    35. }
    36. .main {
    37. margin: 200px auto;
    38. display: flex;
    39. flex-wrap: wrap;
    40. width: 14em;
    41. align-items: center;
    42. justify-content: center;
    43. z-index: -1;
    44. }
    45. .card {
    46. width: 60px;
    47. height: 60px;
    48. border-top-left-radius: 10px;
    49. background: lightgrey;
    50. transition: .4s ease-in-out, .2s background-color ease-in-out, .2s background-image ease-in-out;
    51. background: rgba(255, 255, 255, 0.596);
    52. backdrop-filter: blur(5px);
    53. border: 1px solid transparent;
    54. -webkit-backdrop-filter: blur(5px);
    55. display: flex;
    56. align-items: center;
    57. justify-content: center;
    58. }
    59. .card .instagram {
    60. opacity: 0;
    61. transition: .2s ease-in-out;
    62. fill: #cc39a4;
    63. }
    64. .card:nth-child(2) {
    65. border-radius: 0px;
    66. }
    67. .card:nth-child(2) .twitter {
    68. opacity: 0;
    69. transition: .2s ease-in-out;
    70. fill: #03A9F4;
    71. }
    72. .card:nth-child(3) {
    73. border-top-right-radius: 10px;
    74. border-top-left-radius: 0px;
    75. }
    76. .card:nth-child(3) .dribble {
    77. opacity: 0;
    78. transition: .2s ease-in-out;
    79. fill: #ffb5d2;
    80. }
    81. .card:nth-child(4) {
    82. border-radius: 0px;
    83. }
    84. .card:nth-child(4) .codepen {
    85. opacity: 0;
    86. transition: .2s ease-in-out;
    87. fill: black;
    88. }
    89. .card:nth-child(5) {
    90. border-radius: 0px;
    91. }
    92. .card:nth-child(5) .uiverse {
    93. position: absolute;
    94. margin-left: 0.2em;
    95. margin-top: 0.2em;
    96. opacity: 0;
    97. transition: .2s ease-in-out;
    98. }
    99. .card:nth-child(6) {
    100. border-radius: 0px;
    101. }
    102. .card:nth-child(6) .discord {
    103. opacity: 0;
    104. transition: .2s ease-in-out;
    105. fill: #8c9eff;
    106. }
    107. .card:nth-child(7) {
    108. border-bottom-left-radius: 10px;
    109. border-top-left-radius: 0px;
    110. }
    111. .card:nth-child(7) .github {
    112. opacity: 0;
    113. transition: .2s ease-in-out;
    114. fill: black;
    115. }
    116. .card:nth-child(8) {
    117. border-radius: 0px;
    118. }
    119. .card:nth-child(8) .telegram {
    120. opacity: 0;
    121. transition: .2s ease-in-out;
    122. fill: #29b6f6;
    123. }
    124. .card:nth-child(9) {
    125. border-bottom-right-radius: 10px;
    126. border-top-left-radius: 0px;
    127. }
    128. .card:nth-child(9) .reddit {
    129. opacity: 0;
    130. transition: .2s ease-in-out;
    131. }
    132. .main:hover {
    133. width: 14em;
    134. cursor: pointer;
    135. }
    136. .main:hover .main_back {
    137. opacity: 0;
    138. }
    139. .main:hover .card {
    140. margin: .2em;
    141. border-radius: 10px;
    142. box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    143. border: 1px solid rgba(255, 255, 255, 0.3);
    144. background: rgba(255, 255, 255, 0.2);
    145. }
    146. .main:hover .card:nth-child(5) {
    147. border: transparent;
    148. }
    149. .main:hover .text {
    150. opacity: 0;
    151. z-index: -3;
    152. }
    153. .main:hover .instagram {
    154. opacity: 1;
    155. }
    156. .main:hover .twitter {
    157. opacity: 1;
    158. }
    159. .main:hover .dribble {
    160. opacity: 1;
    161. }
    162. .main:hover .codepen {
    163. opacity: 1;
    164. }
    165. .main:hover .uiverse {
    166. opacity: 1;
    167. }
    168. .main:hover .discord {
    169. opacity: 1;
    170. }
    171. .main:hover .github {
    172. opacity: 1;
    173. }
    174. .main:hover .telegram {
    175. opacity: 1;
    176. }
    177. .main:hover .reddit {
    178. opacity: 1;
    179. }
    180. .card:nth-child(1):hover {
    181. background-color: #cc39a4;
    182. }
    183. .card:nth-child(1):hover .instagram {
    184. fill: white;
    185. }
    186. .card:nth-child(2):hover {
    187. background-color: #03A9F4;
    188. }
    189. .card:nth-child(2):hover .twitter {
    190. fill: white;
    191. }
    192. .card:nth-child(3):hover {
    193. background-color: #ffb5d2;
    194. }
    195. .card:nth-child(3):hover .dribble {
    196. fill: white;
    197. }
    198. .card:nth-child(4):hover {
    199. background-color: #1E1F26;
    200. }
    201. .card:nth-child(4):hover .codepen {
    202. fill: white;
    203. }
    204. .card:nth-child(5):hover {
    205. animation: backgroundIMG .1s;
    206. animation-fill-mode: forwards;
    207. }
    208. .card:nth-child(5):hover .uiverse #paint0_linear_501_142 stop {
    209. stop-color: white;
    210. }
    211. .card:nth-child(5):hover .uiverse #paint1_linear_501_142 stop {
    212. stop-color: white;
    213. }
    214. .card:nth-child(5):hover .uiverse #paint2_linear_501_142 stop {
    215. stop-color: white;
    216. }
    217. @keyframes backgroundIMG {
    218. 100% {
    219. background-image: linear-gradient(#BF66FF, #6248FF, #00DDEB);
    220. }
    221. }
    222. .card:nth-child(6):hover {
    223. background-color: #8c9eff;
    224. }
    225. .card:nth-child(6):hover .discord {
    226. fill: white;
    227. }
    228. .card:nth-child(7):hover {
    229. background-color: black;
    230. }
    231. .card:nth-child(7):hover .github {
    232. fill: white;
    233. }
    234. .card:nth-child(8):hover {
    235. background-color: #29b6f6;
    236. }
    237. .card:nth-child(8):hover .telegram>path:nth-of-type(1) {
    238. fill: white;
    239. }
    240. .card:nth-child(8):hover .telegram>path:nth-of-type(2) {
    241. fill: #29b6f6;
    242. }
    243. .card:nth-child(8):hover .telegram>path:nth-of-type(3) {
    244. fill: #29b6f6;
    245. }
    246. .card:nth-child(9):hover {
    247. background-color: rgb(255, 69, 0);
    248. }
    249. .card:nth-child(9) .reddit>g circle {
    250. fill: rgb(255, 69, 0);
    251. }
    252. .card:nth-child(9) .reddit>g path {
    253. fill: white;
    254. }
    255. .text {
    256. position: absolute;
    257. font-size: 0.7em;
    258. transition: .4s ease-in-out;
    259. color: black;
    260. text-align: center;
    261. font-weight: bold;
    262. letter-spacing: 0.33em;
    263. z-index: 3;
    264. }
    265. style>
    266. head>
    267. <body>
    268. <div class="cantainer">
    269. <h1 class="welcome">欢迎来到彩色之外,您好h1>
    270. <div class="info">其余ICON,更多功能在开发,请您点击中间UI,或者点击GitHub查阅文档div>
    271. div>
    272. <div class="main">
    273. <div class="card">
    274. <svg fill-rule="nonzero" height="30px" width="30px" viewBox="0,0,256,256"
    275. xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" class="instagram">
    276. <g style="mix-blend-mode: normal" text-anchor="none" font-size="none" font-weight="none"
    277. font-family="none" stroke-dashoffset="0" stroke-dasharray="" stroke-miterlimit="10"
    278. stroke-linejoin="miter" stroke-linecap="butt" stroke-width="1" stroke="none" fill-rule="nonzero">
    279. <g transform="scale(8,8)">
    280. <path
    281. d="M11.46875,5c-3.55078,0 -6.46875,2.91406 -6.46875,6.46875v9.0625c0,3.55078 2.91406,6.46875 6.46875,6.46875h9.0625c3.55078,0 6.46875,-2.91406 6.46875,-6.46875v-9.0625c0,-3.55078 -2.91406,-6.46875 -6.46875,-6.46875zM11.46875,7h9.0625c2.47266,0 4.46875,1.99609 4.46875,4.46875v9.0625c0,2.47266 -1.99609,4.46875 -4.46875,4.46875h-9.0625c-2.47266,0 -4.46875,-1.99609 -4.46875,-4.46875v-9.0625c0,-2.47266 1.99609,-4.46875 4.46875,-4.46875zM21.90625,9.1875c-0.50391,0 -0.90625,0.40234 -0.90625,0.90625c0,0.50391 0.40234,0.90625 0.90625,0.90625c0.50391,0 0.90625,-0.40234 0.90625,-0.90625c0,-0.50391 -0.40234,-0.90625 -0.90625,-0.90625zM16,10c-3.30078,0 -6,2.69922 -6,6c0,3.30078 2.69922,6 6,6c3.30078,0 6,-2.69922 6,-6c0,-3.30078 -2.69922,-6 -6,-6zM16,12c2.22266,0 4,1.77734 4,4c0,2.22266 -1.77734,4 -4,4c-2.22266,0 -4,-1.77734 -4,-4c0,-2.22266 1.77734,-4 4,-4z">
    282. path>
    283. g>
    284. g>
    285. svg>
    286. div>
    287. <div class="card">
    288. <svg height="30px" width="30px" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg" class="twitter">
    289. <path
    290. d="M42,12.429c-1.323,0.586-2.746,0.977-4.247,1.162c1.526-0.906,2.7-2.351,3.251-4.058c-1.428,0.837-3.01,1.452-4.693,1.776C34.967,9.884,33.05,9,30.926,9c-4.08,0-7.387,3.278-7.387,7.32c0,0.572,0.067,1.129,0.193,1.67c-6.138-0.308-11.582-3.226-15.224-7.654c-0.64,1.082-1,2.349-1,3.686c0,2.541,1.301,4.778,3.285,6.096c-1.211-0.037-2.351-0.374-3.349-0.914c0,0.022,0,0.055,0,0.086c0,3.551,2.547,6.508,5.923,7.181c-0.617,0.169-1.269,0.263-1.941,0.263c-0.477,0-0.942-0.054-1.392-0.135c0.94,2.902,3.667,5.023,6.898,5.086c-2.528,1.96-5.712,3.134-9.174,3.134c-0.598,0-1.183-0.034-1.761-0.104C9.268,36.786,13.152,38,17.321,38c13.585,0,21.017-11.156,21.017-20.834c0-0.317-0.01-0.633-0.025-0.945C39.763,15.197,41.013,13.905,42,12.429">
    291. path>
    292. svg>
    293. div>
    294. <div class="card">
    295. <svg height="30px" width="30px" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg" class="dribble">
    296. <path
    297. d="M20,38.5C9.799,38.5,1.5,30.201,1.5,20S9.799,1.5,20,1.5S38.5,9.799,38.5,20S30.201,38.5,20,38.5z">
    298. path>
    299. <path
    300. d="M20,2c9.925,0,18,8.075,18,18s-8.075,18-18,18S2,29.925,2,20S10.075,2,20,2 M20,1 C9.507,1,1,9.507,1,20s8.507,19,19,19s19-8.507,19-19S30.493,1,20,1L20,1z"
    301. fill="#ea4c89">path>
    302. <path
    303. d="M28.352 36.914c0 0-3.032-21.087-15.63-34.292M1.269 17.848c0 0 24.2 2.117 32.075-11.102M7.804 34.152c0 0 8.624-19.807 31.058-12.194"
    304. stroke-miterlimit="10" stroke="#ea4c89" fill="none">path>
    305. svg>
    306. div>
    307. <div class="card">
    308. <svg height="30px" width="30px" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg" class="codepen">
    309. <path
    310. d="M 25 4 L 4 17.34375 L 4 32.652344 L 25 46 L 46 32.65625 L 46 17.34375 Z M 25 29.183594 L 19.066406 25.070313 L 25 21.023438 L 30.933594 25.070313 Z M 27 17.605469 L 27 9.949219 L 40.429688 18.484375 L 34.410156 22.65625 Z M 23 17.605469 L 15.589844 22.65625 L 9.570313 18.484375 L 23 9.949219 Z M 12.09375 25.042969 L 8 27.832031 L 8 22.203125 Z M 15.570313 27.453125 L 23 32.605469 L 23 40.050781 L 9.589844 31.527344 Z M 27 32.605469 L 34.429688 27.453125 L 40.410156 31.527344 L 27 40.050781 Z M 37.90625 25.042969 L 42 22.203125 L 42 27.832031 Z">
    311. path>
    312. svg>
    313. div>
    314. <div class="card" title="下载">
    315. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" height="23x" width="23px" class="uiverse">
    316. <path fill="url(#paint0_linear_501_142)"
    317. d="M38.0481 4.82927C38.0481 2.16214 40.018 0 42.4481 0H51.2391C53.6692 0 55.6391 2.16214 55.6391 4.82927V40.1401C55.6391 48.8912 53.2343 55.6657 48.4248 60.4636C43.6153 65.2277 36.7304 67.6098 27.7701 67.6098C18.8099 67.6098 11.925 65.2953 7.11548 60.6663C2.37183 56.0036 3.8147e-06 49.2967 3.8147e-06 40.5456V4.82927C3.8147e-06 2.16213 1.96995 0 4.4 0H13.2405C15.6705 0 17.6405 2.16214 17.6405 4.82927V39.1265C17.6405 43.7892 18.4805 47.2018 20.1605 49.3642C21.8735 51.5267 24.4759 52.6079 27.9678 52.6079C31.4596 52.6079 34.0127 51.5436 35.6268 49.4149C37.241 47.2863 38.0481 43.8399 38.0481 39.0758V4.82927Z">
    318. path>
    319. <path fill="url(#paint1_linear_501_142)"
    320. d="M86.9 61.8682C86.9 64.5353 84.9301 66.6975 82.5 66.6975H73.6595C71.2295 66.6975 69.2595 64.5353 69.2595 61.8682V4.82927C69.2595 2.16214 71.2295 0 73.6595 0H82.5C84.9301 0 86.9 2.16214 86.9 4.82927V61.8682Z">
    321. path>
    322. <path fill="url(#paint2_linear_501_142)"
    323. d="M2.86102e-06 83.2195C2.86102e-06 80.5524 1.96995 78.3902 4.4 78.3902H83.6C86.0301 78.3902 88 80.5524 88 83.2195V89.1707C88 91.8379 86.0301 94 83.6 94H4.4C1.96995 94 0 91.8379 0 89.1707L2.86102e-06 83.2195Z">
    324. path>
    325. <defs>
    326. <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
    327. id="paint0_linear_501_142">
    328. <stop stop-color="#BF66FF">stop>
    329. <stop stop-color="#6248FF" offset="0.510417">stop>
    330. <stop stop-color="#00DDEB" offset="1">stop>
    331. linearGradient>
    332. <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
    333. id="paint1_linear_501_142">
    334. <stop stop-color="#BF66FF">stop>
    335. <stop stop-color="#6248FF" offset="0.510417">stop>
    336. <stop stop-color="#00DDEB" offset="1">stop>
    337. linearGradient>
    338. <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
    339. id="paint2_linear_501_142">
    340. <stop stop-color="#BF66FF">stop>
    341. <stop stop-color="#6248FF" offset="0.510417">stop>
    342. <stop stop-color="#00DDEB" offset="1">stop>
    343. linearGradient>
    344. defs>
    345. svg>
    346. div>
    347. <div class="card">
    348. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="30px" height="30px" class="discord">
    349. <path
    350. d="M40,12c0,0-4.585-3.588-10-4l-0.488,0.976C34.408,10.174,36.654,11.891,39,14c-4.045-2.065-8.039-4-15-4s-10.955,1.935-15,4c2.346-2.109,5.018-4.015,9.488-5.024L18,8c-5.681,0.537-10,4-10,4s-5.121,7.425-6,22c5.162,5.953,13,6,13,6l1.639-2.185C13.857,36.848,10.715,35.121,8,32c3.238,2.45,8.125,5,16,5s12.762-2.55,16-5c-2.715,3.121-5.857,4.848-8.639,5.815L33,40c0,0,7.838-0.047,13-6C45.121,19.425,40,12,40,12z M17.5,30c-1.933,0-3.5-1.791-3.5-4c0-2.209,1.567-4,3.5-4s3.5,1.791,3.5,4C21,28.209,19.433,30,17.5,30z M30.5,30c-1.933,0-3.5-1.791-3.5-4c0-2.209,1.567-4,3.5-4s3.5,1.791,3.5,4C34,28.209,32.433,30,30.5,30z">
    351. path>
    352. svg>
    353. div>
    354. <div class="card" title="博文">
    355. <svg height="30px" width="30px" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg" class="github">
    356. <path
    357. d="M15,3C8.373,3,3,8.373,3,15c0,5.623,3.872,10.328,9.092,11.63C12.036,26.468,12,26.28,12,26.047v-2.051 c-0.487,0-1.303,0-1.508,0c-0.821,0-1.551-0.353-1.905-1.009c-0.393-0.729-0.461-1.844-1.435-2.526 c-0.289-0.227-0.069-0.486,0.264-0.451c0.615,0.174,1.125,0.596,1.605,1.222c0.478,0.627,0.703,0.769,1.596,0.769 c0.433,0,1.081-0.025,1.691-0.121c0.328-0.833,0.895-1.6,1.588-1.962c-3.996-0.411-5.903-2.399-5.903-5.098 c0-1.162,0.495-2.286,1.336-3.233C9.053,10.647,8.706,8.73,9.435,8c1.798,0,2.885,1.166,3.146,1.481C13.477,9.174,14.461,9,15.495,9 c1.036,0,2.024,0.174,2.922,0.483C18.675,9.17,19.763,8,21.565,8c0.732,0.731,0.381,2.656,0.102,3.594 c0.836,0.945,1.328,2.066,1.328,3.226c0,2.697-1.904,4.684-5.894,5.097C18.199,20.49,19,22.1,19,23.313v2.734 c0,0.104-0.023,0.179-0.035,0.268C23.641,24.676,27,20.236,27,15C27,8.373,21.627,3,15,3z">
    358. path>
    359. svg>
    360. div>
    361. <div class="card">
    362. <svg height="30px" width="30px" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg" class="telegram">
    363. <path d="M24 4A20 20 0 1 0 24 44A20 20 0 1 0 24 4Z">path>
    364. <path
    365. d="M33.95,15l-3.746,19.126c0,0-0.161,0.874-1.245,0.874c-0.576,0-0.873-0.274-0.873-0.274l-8.114-6.733 l-3.97-2.001l-5.095-1.355c0,0-0.907-0.262-0.907-1.012c0-0.625,0.933-0.923,0.933-0.923l21.316-8.468 c-0.001-0.001,0.651-0.235,1.126-0.234C33.667,14,34,14.125,34,14.5C34,14.75,33.95,15,33.95,15z"
    366. fill="#fff">path>
    367. <path
    368. d="M23,30.505l-3.426,3.374c0,0-0.149,0.115-0.348,0.12c-0.069,0.002-0.143-0.009-0.219-0.043 l0.964-5.965L23,30.505z"
    369. fill="#b0bec5">path>
    370. <path
    371. d="M29.897,18.196c-0.169-0.22-0.481-0.26-0.701-0.093L16,26c0,0,2.106,5.892,2.427,6.912 c0.322,1.021,0.58,1.045,0.58,1.045l0.964-5.965l9.832-9.096C30.023,18.729,30.064,18.416,29.897,18.196z"
    372. fill="#cfd8dc">path>
    373. svg>
    374. div>
    375. <div class="card">
    376. <svg xml:space="preserve" viewBox="0 0 256 256" height="30" width="30" version="1.1"
    377. xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" class="reddit">
    378. <defs>
    379. defs>
    380. <g transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"
    381. style="stroke: none; border-radius:50%; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;">
    382. <circle transform="matrix(1 0 0 1 0 0)"
    383. style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;"
    384. r="45" cy="45" cx="45">circle>
    385. <path stroke-linecap="round" transform="matrix(1 0 0 1 0 0)"
    386. style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;"
    387. d="M 75.011 45 c -0.134 -3.624 -3.177 -6.454 -6.812 -6.331 c -1.611 0.056 -3.143 0.716 -4.306 1.823 c -5.123 -3.49 -11.141 -5.403 -17.327 -5.537 l 2.919 -14.038 l 9.631 2.025 c 0.268 2.472 2.483 4.262 4.955 3.993 c 2.472 -0.268 4.262 -2.483 3.993 -4.955 s -2.483 -4.262 -4.955 -3.993 c -1.421 0.145 -2.696 0.973 -3.4 2.204 L 48.68 17.987 c -0.749 -0.168 -1.499 0.302 -1.667 1.063 c 0 0.011 0 0.011 0 0.022 l -3.322 15.615 c -6.264 0.101 -12.36 2.025 -17.55 5.537 c -2.64 -2.483 -6.801 -2.36 -9.284 0.291 c -2.483 2.64 -2.36 6.801 0.291 9.284 c 0.515 0.481 1.107 0.895 1.767 1.186 c -0.045 0.66 -0.045 1.32 0 1.98 c 0 10.078 11.745 18.277 26.23 18.277 c 14.485 0 26.23 -8.188 26.23 -18.277 c 0.045 -0.66 0.045 -1.32 0 -1.98 C 73.635 49.855 75.056 47.528 75.011 45 z M 30.011 49.508 c 0 -2.483 2.025 -4.508 4.508 -4.508 c 2.483 0 4.508 2.025 4.508 4.508 s -2.025 4.508 -4.508 4.508 C 32.025 53.993 30.011 51.991 30.011 49.508 z M 56.152 62.058 v -0.179 c -3.199 2.405 -7.114 3.635 -11.119 3.468 c -4.005 0.168 -7.919 -1.063 -11.119 -3.468 c -0.425 -0.515 -0.347 -1.286 0.168 -1.711 c 0.447 -0.369 1.085 -0.369 1.544 0 c 2.707 1.98 6.007 2.987 9.362 2.83 c 3.356 0.179 6.667 -0.783 9.407 -2.74 c 0.492 -0.481 1.297 -0.47 1.779 0.022 C 56.655 60.772 56.644 61.577 56.152 62.058 z M 55.537 54.34 c -0.078 0 -0.145 0 -0.224 0 l 0.034 -0.168 c -2.483 0 -4.508 -2.025 -4.508 -4.508 s 2.025 -4.508 4.508 -4.508 s 4.508 2.025 4.508 4.508 C 59.955 52.148 58.02 54.239 55.537 54.34 z">
    388. path>
    389. g>
    390. svg>
    391. div>
    392. <p class="text">HOVER<br><br>FOR<br><br>SOCIALp>
    393. <div class="main_back">div>
    394. div>
    395. <script>
    396. // 点击github图标跳转到github
    397. document.querySelector('.github').onclick = function () {
    398. window.open('https://blog.csdn.net/m0_57904695/article/details/129950163');
    399. }
    400. // 点击uiverse图标跳转到uiverse
    401. document.querySelector('.uiverse').onclick = function () {
    402. // 新窗口打开
    403. // window.open('http://project.webcats.cn/bx/43924/11881/zk.zip');
    404. // 当前页面打开
    405. window.location.href = 'http://project.webcats.cn/bx/43924/27623/Download.zip';
    406. // alert('稍等片刻,即可下载');
    407. // 一秒后将文追加到body 稍等片刻,即可下载,三秒后回复正常
    408. document.body.innerHTML += '稍等片刻,即可下载';
    409. }
    410. document.querySelector('.discord').onclick = function () {
    411. // 新窗口打开
    412. // window.open('http://project.webcats.cn/bx/43924/15055/zk.zip');
    413. // 当前页面打开
    414. window.location.href = 'http://project.webcats.cn/bx/43924/27623/Download.zip';
    415. // alert('稍等片刻,即可下载');
    416. // 一秒后将文追加到body 稍等片刻,即可下载,三秒后回复正常
    417. document.body.innerHTML += '稍等片刻,即可下载';
    418. }
    419. script>
    420. body>
    421. html>

    启动应用所有代码,可自行扩展及考虑边缘问题 兼容性

    1. html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <title>网站请求打开APPtitle>
    7. <style>
    8. body {
    9. font-family: Arial, sans-serif;
    10. text-align: center;
    11. }
    12. h1 {
    13. font-size: 24px;
    14. color: #333;
    15. margin-top: 20px;
    16. }
    17. button {
    18. background-color: #00B04F;
    19. border: none;
    20. color: white;
    21. padding: 10px 20px;
    22. text-align: center;
    23. text-decoration: none;
    24. display: inline-block;
    25. font-size: 16px;
    26. margin: 10px 2px;
    27. cursor: pointer;
    28. border-radius: 5px;
    29. }
    30. button:hover {
    31. opacity: 0.8;
    32. }
    33. style>
    34. head>
    35. <body>
    36. <h1>请在浏览器中打开此网页h1>
    37. <button onclick="window.open('weixin://1334132303');">请求打开微信button>
    38. <button onclick="window.open('mqq://1334132303');">请求打开QQbutton>
    39. <button onclick="window.open('kwai://home/://');">请求打开快手button>
    40. <button onclick="window.open('tel://');">请求打开电话button>
    41. <button onclick="window.open('sms://');">请求打开信息button>
    42. body>
    43. html>
    1. html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    6. <title>新年快乐-打开应用title>
    7. <link rel="stylesheet" type="text/css" href="./S.css">
    8. head>
    9. <body>
    10. <div class="deng-box">
    11. <div class="deng">
    12. <div class="xian">div>
    13. <div class="deng-a">
    14. <div class="deng-b">
    15. <div class="deng-t">div>
    16. div>
    17. div>
    18. <div class="shui shui-a">
    19. <div class="shui-c">div>
    20. <div class="shui-b">div>
    21. div>
    22. div>
    23. div>
    24. <div class="deng-box2">
    25. <div class="deng">
    26. <div class="xian">div>
    27. <div class="deng-a">
    28. <div class="deng-b">
    29. <div class="deng-t">div>
    30. div>
    31. div>
    32. <div class="shui shui-a">
    33. <div class="shui-c">div>
    34. <div class="shui-b">div>
    35. div>
    36. div>
    37. div>
    38. <button id="openWeChat">请求打开微信button>
    39. <button id="openQQ">请求打开QQbutton>
    40. <button id="openKuaishou">请求打开快手button>
    41. <button id="openTelephone">请求打开电话button>
    42. <button id="openSMS">请求打开信息button>
    43. <script>
    44. document.getElementById('openWeChat').addEventListener('click', function () {
    45. window.open('weixin://');
    46. });
    47. document.getElementById('openQQ').addEventListener('click', function () {
    48. window.open('mqq://1334132303');
    49. });
    50. document.getElementById('openKuaishou').addEventListener('click', function () {
    51. window.open('kwai://home/://');
    52. });
    53. document.getElementById('openTelephone').addEventListener('click', function () {
    54. window.open('tel:66666666');
    55. });
    56. document.getElementById('openSMS').addEventListener('click', function () {
    57. var phoneNumber = '1234567890';
    58. var message = '这是短信内容';
    59. var url = 'sms:' + phoneNumber + '?body=' + encodeURIComponent(message);
    60. window.open(url);
    61. });
    62. script>
    63. body>
    64. html>
    1. body {
    2. font-family: Arial, sans-serif;
    3. text-align: center;margin-top:380px;
    4. }
    5. button {
    6. background-color: #00B04F;
    7. border: none;
    8. color: white;
    9. padding: 10px 20px;
    10. text-align: center;
    11. text-decoration: none;
    12. display: inline-block;
    13. font-size: 16px;
    14. margin: 10px 2px;
    15. cursor: pointer;
    16. border-radius: 5px;
    17. }
    18. button:hover {
    19. opacity: 0.8;
    20. }
    21. .deng-box {
    22. position: fixed;
    23. top: -40px;
    24. right: -20px;
    25. z-index: 1999;
    26. }
    27. .deng-box1 {
    28. position: fixed;
    29. top: -30px;
    30. right: 30px;
    31. z-index: 1998;
    32. }
    33. .deng-box2 {
    34. position: fixed;
    35. top: -40px;
    36. left: -20px;
    37. z-index: 1999;
    38. }
    39. .deng-box3 {
    40. position: fixed;
    41. top: -30px;
    42. left: 30px;
    43. z-index: 1998;
    44. }
    45. .deng-box1 .deng,
    46. .deng-box3 .deng{
    47. position: relative;
    48. width: 120px;
    49. height: 90px;
    50. margin: 50px;
    51. background: #d8000f;
    52. background: rgba(216, 0, 15, 0.8);
    53. border-radius: 50% 50%;
    54. -webkit-transform-origin: 50% -100px;
    55. -webkit-animation: swing 5s infinite ease-in-out;
    56. animation: swing 5s infinite ease-in-out;
    57. box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
    58. }
    59. .deng,
    60. .deng-box2 .deng{
    61. position: relative;
    62. width: 120px;
    63. height: 90px;
    64. margin: 50px;
    65. background: #d8000f;
    66. background: rgba(216, 0, 15, 0.8);
    67. border-radius: 50% 50%;
    68. -webkit-transform-origin: 50% -100px;
    69. -webkit-animation: swing 3s infinite ease-in-out;
    70. animation: swing 3s infinite ease-in-out;
    71. box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
    72. }
    73. .deng-a {
    74. width: 100px;
    75. height: 90px;
    76. background: #d8000f;
    77. background: rgba(216, 0, 15, 0.1);
    78. margin: 12px 8px 8px 10px;
    79. border-radius: 50% 50%;
    80. border: 2px solid #dc8f03;
    81. }
    82. .deng-b {
    83. width: 45px;
    84. height: 90px;
    85. background: #d8000f;
    86. background: rgba(216, 0, 15, 0.1);
    87. margin: -4px 8px 8px 26px;
    88. border-radius: 50% 50%;
    89. border: 2px solid #dc8f03;
    90. }
    91. .xian {
    92. position: absolute;
    93. top: -20px;
    94. left: 60px;
    95. width: 2px;
    96. height: 20px;
    97. background: #dc8f03;
    98. }
    99. .shui-a {
    100. position: relative;
    101. width: 5px;
    102. height: 20px;
    103. margin: -5px 0 0 59px;
    104. -webkit-animation: swing 4s infinite ease-in-out;
    105. -webkit-transform-origin: 50% -45px;
    106. background: #ffa500;
    107. border-radius: 0 0 5px 5px;
    108. }
    109. .shui-b {
    110. position: absolute;
    111. top: 14px;
    112. left: -2px;
    113. width: 10px;
    114. height: 10px;
    115. background: #dc8f03;
    116. border-radius: 50%;
    117. }
    118. .shui-c {
    119. position: absolute;
    120. top: 18px;
    121. left: -2px;
    122. width: 10px;
    123. height: 35px;
    124. background: #ffa500;
    125. border-radius: 0 0 0 5px;
    126. }
    127. .deng:before {
    128. position: absolute;
    129. top: -7px;
    130. left: 29px;
    131. height: 12px;
    132. width: 60px;
    133. content: " ";
    134. display: block;
    135. z-index: 1999;
    136. border-radius: 5px 5px 0 0;
    137. border: solid 1px #dc8f03;
    138. background: #ffa500;
    139. background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
    140. }
    141. .deng:after {
    142. position: absolute;
    143. bottom: -7px;
    144. left: 10px;
    145. height: 12px;
    146. width: 60px;
    147. content: " ";
    148. display: block;
    149. margin-left: 20px;
    150. border-radius: 0 0 5px 5px;
    151. border: solid 1px #dc8f03;
    152. background: #ffa500;
    153. background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
    154. }
    155. .deng-t {
    156. font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
    157. font-size: 3.2rem;
    158. color: #dc8f03;
    159. font-weight: bold;
    160. line-height: 85px;
    161. text-align: center;
    162. }
    163. .night .deng-t,
    164. .night .deng-box,
    165. .night .deng-box1
    166. .night .deng-box2
    167. .night .deng-box3{
    168. background: transparent !important;
    169. }
    170. @keyframes swing {
    171. 0% { transform: rotate(-10deg) }
    172. 50% { transform: rotate(10deg) }
    173. 100% { transform: rotate(-10deg) }
    174. }
    175. @-moz-keyframes swing {
    176. 0% { -moz-transform: rotate(-10deg) }
    177. 50% { -moz-transform: rotate(10deg) }
    178. 100% { -moz-transform: rotate(-10deg) }
    179. }
    180. @-webkit-keyframes swing {
    181. 0% { -webkit-transform: rotate(-10deg) }
    182. 50% { -webkit-transform: rotate(10deg) }
    183. 100% { -webkit-transform: rotate(-10deg) }
    184. }
    185. .display-name{
    186. background-image: -webkit-linear-gradient(90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079);
    187. -webkit-text-fill-color: transparent;
    188. -webkit-background-clip: text;
    189. background-size: 100% 600%;
    190. animation: wzw 10s linear infinite;
    191. }
    192. @keyframes wzw {
    193. 0% {
    194. background-position: 0 0;
    195. }
    196. 100% {
    197. background-position: 0 -300%;
    198. }
    199. }
    200. ::-webkit-scrollbar {
    201. width: 10px;
    202. height: 1px;
    203. }
    204. ::-webkit-scrollbar-thumb {
    205. background-color: #12b7f5;
    206. background-image: -webkit-linear-gradient(45deg, rgba(255, 93, 143, 1) 25%, transparent 25%, transparent 50%, rgba(255, 93, 143, 1) 50%, rgba(255, 93, 143, 1) 75%, transparent 75%, transparent);
    207. }
    208. ::-webkit-scrollbar-track {
    209. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    210. background: #f6f6f6;
    211. }

    7730e2bd39d64179909767e1967da702.jpeg

     _______________________________  期待再见  _______________________________

  • 相关阅读:
    Vite3搭建Vue3项目
    文件操作(1)
    H5调用摄像头扫码详解
    no permission 这种问题的解决方法
    MMSeg搭建自己的网络
    【Python自学笔记】Flask调教方法Internel Server Error
    【Python+Appium】开展自动化测试(一)
    manim边做边学--通用三维坐标系
    只想做个一门心思只赚钱的打工人?这4种收入你都有吗?
    JAVA分布式系统
  • 原文地址:https://blog.csdn.net/m0_57904695/article/details/136304084