手机打开 第三方 “微信、快手、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)
 

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

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chat4移动版下载-彩色之外</title>
    <style>
        .main_back {
            position: absolute;
            border-radius: 10px;
            transform: rotate(90deg);
            width: 11em;
            height: 11em;
            background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
            z-index: -2;
            box-shadow: inset 0px 0px 180px 5px #ffffff;
        }

        .cantainer {
            display: block;
            margin: 50px 0 0 200px;
            padding: 15px;
            width: fit-content;
            height: fit-content;
        }

        .welcome {
            /* 渐变字体 */
            background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.5em;
        }

        .info {
            font-size: 14px;
            color: #200505;
        }

        .main {
            margin: 200px auto;
            display: flex;
            flex-wrap: wrap;
            width: 14em;
            align-items: center;
            justify-content: center;
            z-index: -1;
        }

        .card {
            width: 60px;
            height: 60px;
            border-top-left-radius: 10px;
            background: lightgrey;
            transition: .4s ease-in-out, .2s background-color ease-in-out, .2s background-image ease-in-out;
            background: rgba(255, 255, 255, 0.596);
            backdrop-filter: blur(5px);
            border: 1px solid transparent;
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card .instagram {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: #cc39a4;
        }

        .card:nth-child(2) {
            border-radius: 0px;
        }

        .card:nth-child(2) .twitter {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: #03A9F4;
        }

        .card:nth-child(3) {
            border-top-right-radius: 10px;
            border-top-left-radius: 0px;
        }

        .card:nth-child(3) .dribble {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: #ffb5d2;
        }

        .card:nth-child(4) {
            border-radius: 0px;
        }

        .card:nth-child(4) .codepen {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: black;
        }

        .card:nth-child(5) {
            border-radius: 0px;
        }

        .card:nth-child(5) .uiverse {
            position: absolute;
            margin-left: 0.2em;
            margin-top: 0.2em;
            opacity: 0;
            transition: .2s ease-in-out;
        }

        .card:nth-child(6) {
            border-radius: 0px;
        }

        .card:nth-child(6) .discord {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: #8c9eff;
        }

        .card:nth-child(7) {
            border-bottom-left-radius: 10px;
            border-top-left-radius: 0px;
        }

        .card:nth-child(7) .github {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: black;
        }

        .card:nth-child(8) {
            border-radius: 0px;
        }

        .card:nth-child(8) .telegram {
            opacity: 0;
            transition: .2s ease-in-out;
            fill: #29b6f6;
        }

        .card:nth-child(9) {
            border-bottom-right-radius: 10px;
            border-top-left-radius: 0px;
        }

        .card:nth-child(9) .reddit {
            opacity: 0;
            transition: .2s ease-in-out;
        }

        .main:hover {
            width: 14em;
            cursor: pointer;
        }

        .main:hover .main_back {
            opacity: 0;
        }

        .main:hover .card {
            margin: .2em;
            border-radius: 10px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.2);
        }

        .main:hover .card:nth-child(5) {
            border: transparent;
        }

        .main:hover .text {
            opacity: 0;
            z-index: -3;
        }

        .main:hover .instagram {
            opacity: 1;
        }

        .main:hover .twitter {
            opacity: 1;
        }

        .main:hover .dribble {
            opacity: 1;
        }

        .main:hover .codepen {
            opacity: 1;
        }

        .main:hover .uiverse {
            opacity: 1;
        }

        .main:hover .discord {
            opacity: 1;
        }

        .main:hover .github {
            opacity: 1;
        }

        .main:hover .telegram {
            opacity: 1;
        }

        .main:hover .reddit {
            opacity: 1;
        }

        .card:nth-child(1):hover {
            background-color: #cc39a4;
        }

        .card:nth-child(1):hover .instagram {
            fill: white;
        }

        .card:nth-child(2):hover {
            background-color: #03A9F4;
        }

        .card:nth-child(2):hover .twitter {
            fill: white;
        }

        .card:nth-child(3):hover {
            background-color: #ffb5d2;
        }

        .card:nth-child(3):hover .dribble {
            fill: white;
        }

        .card:nth-child(4):hover {
            background-color: #1E1F26;
        }

        .card:nth-child(4):hover .codepen {
            fill: white;
        }

        .card:nth-child(5):hover {
            animation: backgroundIMG .1s;
            animation-fill-mode: forwards;
        }

        .card:nth-child(5):hover .uiverse #paint0_linear_501_142 stop {
            stop-color: white;
        }

        .card:nth-child(5):hover .uiverse #paint1_linear_501_142 stop {
            stop-color: white;
        }

        .card:nth-child(5):hover .uiverse #paint2_linear_501_142 stop {
            stop-color: white;
        }

        @keyframes backgroundIMG {
            100% {
                background-image: linear-gradient(#BF66FF, #6248FF, #00DDEB);
            }
        }

        .card:nth-child(6):hover {
            background-color: #8c9eff;
        }

        .card:nth-child(6):hover .discord {
            fill: white;
        }

        .card:nth-child(7):hover {
            background-color: black;
        }

        .card:nth-child(7):hover .github {
            fill: white;
        }

        .card:nth-child(8):hover {
            background-color: #29b6f6;
        }

        .card:nth-child(8):hover .telegram>path:nth-of-type(1) {
            fill: white;
        }

        .card:nth-child(8):hover .telegram>path:nth-of-type(2) {
            fill: #29b6f6;
        }

        .card:nth-child(8):hover .telegram>path:nth-of-type(3) {
            fill: #29b6f6;
        }

        .card:nth-child(9):hover {
            background-color: rgb(255, 69, 0);
        }

        .card:nth-child(9) .reddit>g circle {
            fill: rgb(255, 69, 0);
        }

        .card:nth-child(9) .reddit>g path {
            fill: white;
        }

        .text {
            position: absolute;
            font-size: 0.7em;
            transition: .4s ease-in-out;
            color: black;
            text-align: center;
            font-weight: bold;
            letter-spacing: 0.33em;
            z-index: 3;
        }
    </style>
</head>

<body>
    <div class="cantainer">
        <h1 class="welcome">欢迎来到彩色之外,您好</h1>
        <div class="info">其余ICON,更多功能在开发,请您点击中间UI,或者点击GitHub查阅文档</div>
    </div>
    <div class="main">
        <div class="card">
            <svg fill-rule="nonzero" height="30px" width="30px" viewBox="0,0,256,256"
                xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" class="instagram">
                <g style="mix-blend-mode: normal" text-anchor="none" font-size="none" font-weight="none"
                    font-family="none" stroke-dashoffset="0" stroke-dasharray="" stroke-miterlimit="10"
                    stroke-linejoin="miter" stroke-linecap="butt" stroke-width="1" stroke="none" fill-rule="nonzero">
                    <g transform="scale(8,8)">
                        <path
                            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">
                        </path>
                    </g>
                </g>
            </svg>
        </div>
        <div class="card">
            <svg height="30px" width="30px" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg" class="twitter">
                <path
                    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">
                </path>
            </svg>
        </div>
        <div class="card">
            <svg height="30px" width="30px" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg" class="dribble">
                <path
                    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">
                </path>
                <path
                    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"
                    fill="#ea4c89"></path>
                <path
                    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"
                    stroke-miterlimit="10" stroke="#ea4c89" fill="none"></path>
            </svg>
        </div>
        <div class="card">
            <svg height="30px" width="30px" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg" class="codepen">
                <path
                    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">
                </path>
            </svg>
        </div>
        <div class="card" title="下载">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" height="23x" width="23px" class="uiverse">
                <path fill="url(#paint0_linear_501_142)"
                    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">
                </path>
                <path fill="url(#paint1_linear_501_142)"
                    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">
                </path>
                <path fill="url(#paint2_linear_501_142)"
                    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">
                </path>
                <defs>
                    <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
                        id="paint0_linear_501_142">
                        <stop stop-color="#BF66FF"></stop>
                        <stop stop-color="#6248FF" offset="0.510417"></stop>
                        <stop stop-color="#00DDEB" offset="1"></stop>
                    </linearGradient>
                    <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
                        id="paint1_linear_501_142">
                        <stop stop-color="#BF66FF"></stop>
                        <stop stop-color="#6248FF" offset="0.510417"></stop>
                        <stop stop-color="#00DDEB" offset="1"></stop>
                    </linearGradient>
                    <linearGradient gradientUnits="userSpaceOnUse" y2="87.6201" x2="96.1684" y1="0" x1="0"
                        id="paint2_linear_501_142">
                        <stop stop-color="#BF66FF"></stop>
                        <stop stop-color="#6248FF" offset="0.510417"></stop>
                        <stop stop-color="#00DDEB" offset="1"></stop>
                    </linearGradient>
                </defs>
            </svg>
        </div>
        <div class="card">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="30px" height="30px" class="discord">
                <path
                    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">
                </path>
            </svg>
        </div>
        <div class="card" title="博文">
            <svg height="30px" width="30px" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg" class="github">
                <path
                    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">
                </path>
            </svg>
        </div>
        <div class="card">
            <svg height="30px" width="30px" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg" class="telegram">
                <path d="M24 4A20 20 0 1 0 24 44A20 20 0 1 0 24 4Z"></path>
                <path
                    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"
                    fill="#fff"></path>
                <path
                    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"
                    fill="#b0bec5"></path>
                <path
                    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"
                    fill="#cfd8dc"></path>
            </svg>
        </div>
        <div class="card">
            <svg xml:space="preserve" viewBox="0 0 256 256" height="30" width="30" version="1.1"
                xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" class="reddit">
                <defs>
                </defs>
                <g transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"
                    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;">
                    <circle transform="matrix(1 0 0 1 0 0)"
                        style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;"
                        r="45" cy="45" cx="45"></circle>
                    <path stroke-linecap="round" transform="matrix(1 0 0 1 0 0)"
                        style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill-rule: nonzero; opacity: 1;"
                        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">
                    </path>
                </g>
            </svg>
        </div>
        <p class="text">HOVER<br><br>FOR<br><br>SOCIAL</p>
        <div class="main_back"></div>
    </div>

    <script>
        // 点击github图标跳转到github
        document.querySelector('.github').onclick = function () {
            window.open('https://blog.csdn.net/m0_57904695/article/details/129950163');
        }
        // 点击uiverse图标跳转到uiverse
        document.querySelector('.uiverse').onclick = function () {
            // 新窗口打开
            // window.open('http://project.webcats.cn/bx/43924/11881/zk.zip');
            // 当前页面打开
            window.location.href = 'http://project.webcats.cn/bx/43924/27623/Download.zip';
            // alert('稍等片刻,即可下载');
            // 一秒后将文追加到body 稍等片刻,即可下载,三秒后回复正常
            document.body.innerHTML += '稍等片刻,即可下载';
        }

        document.querySelector('.discord').onclick = function () {
            // 新窗口打开
            // window.open('http://project.webcats.cn/bx/43924/15055/zk.zip');
            // 当前页面打开
            window.location.href = 'http://project.webcats.cn/bx/43924/27623/Download.zip';
            // alert('稍等片刻,即可下载');
            // 一秒后将文追加到body 稍等片刻,即可下载,三秒后回复正常
            document.body.innerHTML += '稍等片刻,即可下载';
        }

    </script>
</body>

</html>

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

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>网站请求打开APP</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      text-align: center;
    }

    h1 {
      font-size: 24px;
      color: #333;
      margin-top: 20px;
    }
    
    button {
      background-color: #00B04F;
      border: none;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 10px 2px;
      cursor: pointer;
      border-radius: 5px;
    }
    
    button:hover {
      opacity: 0.8;
    }
  </style>
</head>
<body>
  <h1>请在浏览器中打开此网页</h1>
  <!-- 使用 target="_blank" 属性在新标签页中打开链接 -->
  <button onclick="window.open('weixin://1334132303');">请求打开微信</button>
  <button onclick="window.open('mqq://1334132303');">请求打开QQ</button>
  <button onclick="window.open('kwai://home/://');">请求打开快手</button>
  <button onclick="window.open('tel://');">请求打开电话</button>
  <button onclick="window.open('sms://');">请求打开信息</button>
</body>
</html>
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>新年快乐-打开应用</title>
  <link rel="stylesheet" type="text/css" href="./S.css">
</head>

<body>
  <div class="deng-box">
    <div class="deng">
      <div class="xian"></div>
      <div class="deng-a">
        <div class="deng-b">
          <div class="deng-t">年</div>
        </div>
      </div>
      <div class="shui shui-a">
        <div class="shui-c"></div>
        <div class="shui-b"></div>
      </div>
    </div>
  </div>
  <div class="deng-box2">
    <div class="deng">
      <div class="xian"></div>
      <div class="deng-a">
        <div class="deng-b">
          <div class="deng-t">龙</div>
        </div>
      </div>
      <div class="shui shui-a">
        <div class="shui-c"></div>
        <div class="shui-b"></div>
      </div>
    </div>
  </div>
  <button id="openWeChat">请求打开微信</button>
  <button id="openQQ">请求打开QQ</button>
  <button id="openKuaishou">请求打开快手</button>
  <button id="openTelephone">请求打开电话</button>
  <button id="openSMS">请求打开信息</button>

  <script>
    document.getElementById('openWeChat').addEventListener('click', function () {
      window.open('weixin://');
    });

    document.getElementById('openQQ').addEventListener('click', function () {
      window.open('mqq://1334132303');
    });

    document.getElementById('openKuaishou').addEventListener('click', function () {
      window.open('kwai://home/://');
    });

    document.getElementById('openTelephone').addEventListener('click', function () {
      window.open('tel:66666666');
    });

    document.getElementById('openSMS').addEventListener('click', function () {
      var phoneNumber = '1234567890';
      var message = '这是短信内容';
      var url = 'sms:' + phoneNumber + '?body=' + encodeURIComponent(message);
      window.open(url);
    });
  </script>
</body>

</html>
body {
      font-family: Arial, sans-serif;
      text-align: center;margin-top:380px;
    }
    
    button {

      background-color: #00B04F;
      border: none;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 10px 2px;
      cursor: pointer;
      border-radius: 5px;
    }
    button:hover {
      opacity: 0.8;
    }

.deng-box {
    position: fixed;
    top: -40px;
    right: -20px;
    z-index: 1999;
}

.deng-box1 {
    position: fixed;
    top: -30px;
    right: 30px;
    z-index: 1998;
}

.deng-box2 {
    position: fixed;
    top: -40px;
    left: -20px;
    z-index: 1999;
}
 
 .deng-box3 {
    position: fixed;
    top: -30px;
    left: 30px;
    z-index: 1998;
}
 
.deng-box1 .deng,
.deng-box3 .deng{
    position: relative;
    width: 120px;
    height: 90px;
    margin: 50px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.8);
    border-radius: 50% 50%;
    -webkit-transform-origin: 50% -100px;
    -webkit-animation: swing 5s infinite ease-in-out;
    animation: swing 5s infinite ease-in-out;
    box-shadow: -5px 5px 30px 4px rgba(252, 144, 61, 1);
}
.deng,
.deng-box2 .deng{
    position: relative;
    width: 120px;
    height: 90px;
    margin: 50px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.8);
    border-radius: 50% 50%;
    -webkit-transform-origin: 50% -100px;
    -webkit-animation: swing 3s infinite ease-in-out;
    animation: swing 3s infinite ease-in-out;
    box-shadow: -5px 5px 50px 4px rgba(250, 108, 0, 1);
}
 
.deng-a {
    width: 100px;
    height: 90px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.1);
    margin: 12px 8px 8px 10px;
    border-radius: 50% 50%;
    border: 2px solid #dc8f03;
}
 
.deng-b {
    width: 45px;
    height: 90px;
    background: #d8000f;
    background: rgba(216, 0, 15, 0.1);
    margin: -4px 8px 8px 26px;
    border-radius: 50% 50%;
    border: 2px solid #dc8f03;
}
 
.xian {
    position: absolute;
    top: -20px;
    left: 60px;
    width: 2px;
    height: 20px;
    background: #dc8f03;
}
 
.shui-a {
    position: relative;
    width: 5px;
    height: 20px;
    margin: -5px 0 0 59px;
    -webkit-animation: swing 4s infinite ease-in-out;
    -webkit-transform-origin: 50% -45px;
    background: #ffa500;
    border-radius: 0 0 5px 5px;
}
 
.shui-b {
    position: absolute;
    top: 14px;
    left: -2px;
    width: 10px;
    height: 10px;
    background: #dc8f03;
    border-radius: 50%;
}
 
.shui-c {
    position: absolute;
    top: 18px;
    left: -2px;
    width: 10px;
    height: 35px;
    background: #ffa500;
    border-radius: 0 0 0 5px;
}
 
.deng:before {
    position: absolute;
    top: -7px;
    left: 29px;
    height: 12px;
    width: 60px;
    content: " ";
    display: block;
    z-index: 1999;
    border-radius: 5px 5px 0 0;
    border: solid 1px #dc8f03;
    background: #ffa500;
    background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
 
.deng:after {
    position: absolute;
    bottom: -7px;
    left: 10px;
    height: 12px;
    width: 60px;
    content: " ";
    display: block;
    margin-left: 20px;
    border-radius: 0 0 5px 5px;
    border: solid 1px #dc8f03;
    background: #ffa500;
    background: linear-gradient(to right, #dc8f03, #ffa500, #dc8f03, #ffa500, #dc8f03);
}
 
.deng-t {
    font-family: 华文行楷,Arial,Lucida Grande,Tahoma,sans-serif;
    font-size: 3.2rem;
    color: #dc8f03;
    font-weight: bold;
    line-height: 85px;
    text-align: center;
}
 
.night .deng-t, 
.night .deng-box, 
.night .deng-box1,
.night .deng-box2,
.night .deng-box3{
    background: transparent !important;
}

@keyframes swing { 
    0% { transform: rotate(-10deg) } 
    50% { transform: rotate(10deg) } 
    100% { transform: rotate(-10deg) } 
}
 
@-moz-keyframes swing {
    0% { -moz-transform: rotate(-10deg) }
    50% { -moz-transform: rotate(10deg) }
    100% { -moz-transform: rotate(-10deg) }
}
 
@-webkit-keyframes swing {
    0% { -webkit-transform: rotate(-10deg) }
    50% { -webkit-transform: rotate(10deg) }
    100% { -webkit-transform: rotate(-10deg) }
}
.display-name{
    background-image: -webkit-linear-gradient(90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 100% 600%;
    animation: wzw 10s linear infinite;
    }
    @keyframes wzw {
    0% {
    background-position: 0 0;
    }
    100% {
    background-position: 0 -300%;
    }
    }
    ::-webkit-scrollbar {
        width: 10px;  
        height: 1px;
      }
      ::-webkit-scrollbar-thumb {
        background-color: #12b7f5;
        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);
      }
      ::-webkit-scrollbar-track {
          -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
          background: #f6f6f6;
      }

7730e2bd39d64179909767e1967da702.jpeg

 _______________________________  期待再见  _______________________________

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mfbz.cn/a/413296.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

pytorch --反向传播和优化器

1. 反向传播 计算当前张量的梯度 Tensor.backward(gradientNone, retain_graphNone, create_graphFalse, inputsNone)计算当前张量相对于图中叶子节点的梯度。 使用反向传播&#xff0c;每个节点的梯度&#xff0c;根据梯度进行参数优化&#xff0c;最后使得损失最小化 代码…

IDEA的LeetCode插件的设置

一、下载插件 选择点击File->Setting->Plugins&#xff1a;搜索LeetCode 二、打开这个插件 选择View —>Tool Windows—>leetcode 三、登陆自己的账号 关于下面几个参数的定义&#xff0c;官方给的是&#xff1a; Custom code template: 开启使用自定义模板&…

搜维尔科技:OptiTrack 提供了性能最佳的动作捕捉平台

OptiTrack 动画 我们的 Prime 系列相机和 Motive 软件相结合&#xff0c;产生了世界上最大的捕获量、最精确的 3D 数据和有史以来最高的相机数量。OptiTrack 提供了性能最佳的动作捕捉平台&#xff0c;具有易于使用的制作工作流程以及运行世界上最大舞台所需的深度。 无与伦比…

【k8s配置与存储--持久化存储(PV、PVC、存储类)】

1、PV与PVC 介绍 持久卷&#xff08;PersistentVolume&#xff0c;PV&#xff09; 是集群中的一块存储&#xff0c;可以由管理员事先制备&#xff0c; 或者使用存储类&#xff08;Storage Class&#xff09;来动态制备。 持久卷是集群资源&#xff0c;就像节点也是集群资源一样…

SpringCloud微服务-Eureka注册中心

Eureka注册中心 文章目录 Eureka注册中心前言1、Eureka的作用2、搭建EurekaServer3、服务注册4、启动多个实例5、服务拉取 -实现负载均衡 前言 在服务调用时产生的问题&#xff1a; //2. 利用RestTemplate发起HTTP请求&#xff0c;查询user String url "http://localho…

【Unity自制手册】Unity—Camera相机跟随的方法大全

&#x1f468;‍&#x1f4bb;个人主页&#xff1a;元宇宙-秩沅 &#x1f468;‍&#x1f4bb; hallo 欢迎 点赞&#x1f44d; 收藏⭐ 留言&#x1f4dd; 加关注✅! &#x1f468;‍&#x1f4bb; 本文由 秩沅 原创 &#x1f468;‍&#x1f4bb; 收录于专栏&#xff1a;Uni…

小甲鱼Python06 序列字典集合

一、序列 1.id函数 is运算符 我们首先思考下字符串、元组、列表的共同点&#xff1a; 都有很多共同的运算符。都可以通过索引来获取元素&#xff0c;第一个元素索引都是0&#xff0c;都可以通过切片的方法获取某个范围内元素的集合。 以上三种统称为序列。序列分为可变序列…

安装极狐GitLab Runner并测试使用

本文继【新版极狐安装配置详细版】之后继续 1. 添加官方极狐GitLab 仓库&#xff1a; 对于 RHEL/CentOS/Fedora&#xff1a; curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | sudo bash2. 安装最新版本的极狐G…

多进程服务端进程框架

对父进程来说&#xff0c;不需要客户端连接的socket&#xff0c;对子进程来说,不需要监听的socket。代码中标出了两行关闭对应socket的函数 上图可见&#xff0c;对应的关闭了以后&#xff08;3是服务端监听的socket&#xff0c;4是客户端连上来的socket&#xff09; 通过上图…

【GPTs分享】每日GPTs分享之Image Generator Tool

今日GPTs分享&#xff1a;Image Generator Tool。Image Generator Tool是一种基于人工智能的创意辅助工具&#xff0c;专门设计用于根据文字描述生成图像。这款工具结合了专业性与友好性&#xff0c;鼓励用户发挥创造力&#xff0c;同时提供高效且富有成效的交互体验。 主要功能…

10:00面试,10:05就出来了,问的问题过于变态了。。。

我从一家小公司转投到另一家公司&#xff0c;期待着新的工作环境和机会。然而&#xff0c;新公司的加班文化让我有些始料未及。虽然薪资相对较高&#xff0c;但长时间的工作和缺乏休息使我身心俱疲。 就在我逐渐适应这种高强度的工作节奏时&#xff0c;公司突然宣布了一则令人…

C++ Webserver从零开始:代码书写(十四)——http连接处理

前言 HTTP类是Webserver到目前为止最为庞大的类。其实最开始我是只想分析它的部分代码&#xff0c;但是最后我还咬咬牙将http连接处理的全代码分析写完了。因此&#xff0c;本文会特别的长&#xff0c;我相信没人可以把它一口气全部读完。不过我在本文中进行了细致的目录划分&a…

部署roop实现视频人脸替换

roop只需要一张人脸的图像&#xff0c;就可以替换视频中的脸。不需要数据集和模型训练。 下载对应版本的cudnn https://developer.nvidia.com/rdp/cudnn-archivehttps://developer.nvidia.com/rdp/cudnn-archive解压后的三个文件夹拷贝到cuda的目录 C:\Program Files\NVIDIA…

【非递归版】归并排序算法(2)

目录 MergeSortNonR归并排序 非递归&归并排序VS快速排序 整体思想 图解分析​ 代码实现 时间复杂度 归并排序在硬盘上的应用&#xff08;外排序&#xff09; MergeSortNonR归并排序 前面的快速排序的非递归实现&#xff0c;我们借助栈实现。这里我们能否也借助栈去…

uniapp实现单选框

采用uniapp-vue3实现的一款单选框组件&#xff0c;提供丝滑的动画选中效果&#xff0c;支持不同主题配置&#xff0c;适配web、H5、微信小程序&#xff08;其他平台小程序未测试过&#xff0c;可自行尝试&#xff09; 可到插件市场下载尝试&#xff1a; https://ext.dcloud.net…

SpringCloudAlibaba全家桶介绍

Spring Cloud Alibaba Spring Cloud Alibaba 是什么&#xff1f;微服务全景图核心特色 大家好&#xff0c;我叫阿明。下面我会为大家准备Spring Cloud Alibaba系列知识体系&#xff0c;结合实战输出案列&#xff0c;让大家一眼就能明白得技术原理&#xff0c;应用于各公司得各…

二次供水物联网:HiWoo Cloud助力城市水务管理升级

随着城市化的快速推进&#xff0c;二次供水系统作为城市基础设施的重要组成部分&#xff0c;其稳定运行和高效管理显得至关重要。然而&#xff0c;传统的二次供水管理方式在应对复杂多变的城市供水需求时&#xff0c;显得力不从心。为了破解这一难题&#xff0c;HiWoo Cloud平台…

VsCode的leetcode插件无法登录

前提 想使用VsCode的leetcode插件进行刷题&#xff0c;然后按照网上的教程进行安装下载&#xff0c;但是到了登录这一步&#xff0c;死活也登录不了&#xff0c;然后查看log一直报的错误是invalid password。 解决方法 首先确定在插件中设置的站点是Leetcode中国&#xff0c…

【Java EE初阶二十五】简单的表白墙(一)

1. 前端部分 1.1 前端代码 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta http-equiv"X-UA-Compatible" content"IEedge"><meta name"viewport" content"wid…

继电器测试中需要注意的安全事项有哪些?

继电器广泛应用于电气控制系统中的开关元件&#xff0c;其主要功能是在输入信号的控制下实现输出电路的断开或闭合。在继电器测试过程中&#xff0c;为了确保测试的准确性和安全性&#xff0c;需要遵循一定的安全事项。以下是在进行继电器测试时需要注意的安全事项&#xff1a;…
最新文章