<!DOCTYPE HTML>
<html style='padding-bottom: 60px;'>
<head>
    <meta charset='utf-8'>
 <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>抖音号权重查询账号估价</title>
    <link  href='https://lf1-cdn-tos.bytegoofy.com/goofy/ies/douyin_web/public/favicon.ico'  rel='shortcut icon' type='image/x-icon' />
    <link rel='stylesheet' href='index.css'>
<pre><code>&lt;style&gt;
body::before {
</code></pre>
<p>content: '无涯工作室';
opacity: 0.3;
font-size: 2em;
color: #ccc;
position: fixed;
top: 60%;
left: 50%;
transform: translate(-50%, -50%) rotate(0deg);
z-index: -1;
}</p>
<pre><code>    .newtons-cradle {
</code></pre>
<p>--uib-size: 50px;
--uib-speed: 1.2s;
--uib-color: #474554;
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: var(--uib-size);
height: var(--uib-size);
}</p>
<p>.newtons-cradle__dot {
position: relative;
display: flex;
align-items: center;
height: 100%;
width: 25%;
transform-origin: center top;
}</p>
<p>.newtons-cradle__dot::after {
content: '';
display: block;
width: 100%;
height: 25%;
border-radius: 50%;
background-color: var(--uib-color);
}</p>
<p>.newtons-cradle__dot:first-child {
animation: swing var(--uib-speed) linear infinite;
}</p>
<p>.newtons-cradle__dot:last-child {
animation: swing2 var(--uib-speed) linear infinite;
}</p>
<p>@keyframes swing {
0% {
transform: rotate(0deg);
animation-timing-function: ease-out;
}</p>
<p>25% {
transform: rotate(70deg);
animation-timing-function: ease-in;
}</p>
<p>50% {
transform: rotate(0deg);
animation-timing-function: linear;
}
}</p>
<p>@keyframes swing2 {
0% {
transform: rotate(0deg);
animation-timing-function: linear;
}</p>
<p>50% {
transform: rotate(0deg);
animation-timing-function: ease-out;
}</p>
<p>75% {
transform: rotate(-70deg);
animation-timing-function: ease-in;
}
}
.header-right-button {
display: flex;
align-items: center;
}</p>
<p>.header-right-button a,
.header-right-button button {
font-size: 13px;
padding: 8px 12px;
border: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
}</p>
<p>.header-right-button a:hover,
.header-right-button button:hover {
background-color: #0062cc;
}</p>
<p>.header-right-button button {
margin-left: 10px;
}
</style></p>
</head>
<body>
 <div class='container'>
    <form>
        <div class='input'>
            <input type='text' placeholder='请粘贴抖音主页分享链接' value='' autocomplete='off' id='input-link'>
        </div>
<pre><code>&lt;/form&gt;
&lt;div id='btn-wrapper'&gt;
    &lt;button onclick='btn1()'&gt;
      &lt;div class='header-right-button'&gt;
        &lt;a&gt;查权重&lt;/a&gt;
        &lt;button onclick='checkValue()'&gt;账号估价&lt;/button&gt;
      &lt;/div&gt;
    &lt;/button&gt;
  &lt;/div&gt;
&lt;button onclick='checkWeight()' &gt;&lt;div class='search' &gt;&lt;span&gt;抖音查权重&lt;/span&gt;&lt;/div&gt;&lt;/button&gt;
</code></pre>
</div>
<script>
function checkWeight() {
    var maxAttempts = 3; 
    var today = new Date();
    today.setHours(0, 0, 0, 0); 
    var expires = new Date(today.getTime() + (24 * 60 * 60 * 1000)); 

    var attempts = getCookie('attempts'); 
    if (attempts === null) {
        attempts = 0;
    }
    if (attempts >= maxAttempts) {
        alert('免费用户只能查询' + maxAttempts + '次,请明天再来,或者找管理员赞助吧');
        return;
    }

    var url = document.getElementById('input-link').value.trim();
    var pattern = /^.*?(https://.*)$/;
    var match = url.match(pattern);
    if (match !== null) {
        var newUrl = 'https://dy.wygzs.top/dy/api.php?url=' + match[1];
        location.href = newUrl;
        setCookie('attempts', ++attempts, expires); 
    } else {
        alert('输入的链接格式不正确,请重新输入。');
    }
}

function getCookie(name) {
    var pattern = new RegExp('(?:(?:^|.*;)\s*' + name + '\s*\=\s*([^;]*).*$)|^.*$');
    return decodeURIComponent(document.cookie.replace(pattern, '$1')) || null;
}

function setCookie(name, value, expires) {
    document.cookie = name + '=' + encodeURIComponent(value) + '; expires=' + expires.toUTCString() + '; path=/'  ;
}

function btn1(){
    document.getElementById('div1').style.display='block'; 
}

function checkValue(){
    document.getElementById('div2').style.display='block'; 
}
</script>
<footer>
    <div class='footer-wrapper'>
        <div class='footer-size'>
              <span>如侵权请联系微信ziyuan2319 </span><br>
           <!-- <span>Copyright © 2020-2023 </span><a href='/' target='_blank'>无涯工作室</a>-->
        </div>
    </div>
</footer> 
<script>
function btn1(){
    document.getElementById('div1').style.display='block'; 
}
function btn2(){
    document.getElementById('div1').style.display='none';
    document.getElementById('div2').style.display='block';
}
</script>
</body>
</html>
', 'content_html': '<!DOCTYPE HTML>
<html style='padding-bottom: 60px;'>
<head>
    <meta charset='utf-8'>
 <meta name='viewport' content='width=device-width, initial-scale=1.0'>
    <title>抖音号权重查询账号估价</title>
    <link  href='https://lf1-cdn-tos.bytegoofy.com/goofy/ies/douyin_web/public/favicon.ico'  rel='shortcut icon' type='image/x-icon' />
    <link rel='stylesheet' href='index.css'>
<pre><code>&lt;style&gt;
body::before {
</code></pre>
<p>content: '无涯工作室';
opacity: 0.3;
font-size: 2em;
color: #ccc;
position: fixed;
top: 60%;
left: 50%;
transform: translate(-50%, -50%) rotate(0deg);
z-index: -1;
}</p>
<pre><code>    .newtons-cradle {
</code></pre>
<p>--uib-size: 50px;
--uib-speed: 1.2s;
--uib-color: #474554;
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: var(--uib-size);
height: var(--uib-size);
}</p>
<p>.newtons-cradle__dot {
position: relative;
display: flex;
align-items: center;
height: 100%;
width: 25%;
transform-origin: center top;
}</p>
<p>.newtons-cradle__dot::after {
content: '';
display: block;
width: 100%;
height: 25%;
border-radius: 50%;
background-color: var(--uib-color);
}</p>
<p>.newtons-cradle__dot:first-child {
animation: swing var(--uib-speed) linear infinite;
}</p>
<p>.newtons-cradle__dot:last-child {
animation: swing2 var(--uib-speed) linear infinite;
}</p>
<p>@keyframes swing {
0% {
transform: rotate(0deg);
animation-timing-function: ease-out;
}</p>
<p>25% {
transform: rotate(70deg);
animation-timing-function: ease-in;
}</p>
<p>50% {
transform: rotate(0deg);
animation-timing-function: linear;
}
}</p>
<p>@keyframes swing2 {
0% {
transform: rotate(0deg);
animation-timing-function: linear;
}</p>
<p>50% {
transform: rotate(0deg);
animation-timing-function: ease-out;
}</p>
<p>75% {
transform: rotate(-70deg);
animation-timing-function: ease-in;
}
}
.header-right-button {
display: flex;
align-items: center;
}</p>
<p>.header-right-button a,
.header-right-button button {
font-size: 13px;
padding: 8px 12px;
border: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
}</p>
<p>.header-right-button a:hover,
.header-right-button button:hover {
background-color: #0062cc;
}</p>
<p>.header-right-button button {
margin-left: 10px;
}</p>
<p>#btn-wrapper {
display: flex;
justify-content: center;
margin-top: 20px;
}
</style></p>
</head>
<body>
 <div class='container'>
    <form>
        <div class='input'>
            <input type='text' placeholder='请粘贴抖音主页分享链接' value='' autocomplete='off' id='input-link'>
        </div>
<pre><code>&lt;/form&gt;
&lt;div id='btn-wrapper'&gt;
    &lt;button onclick='btn1()'&gt;
      &lt;div class='header-right-button'&gt;
        &lt;a&gt;查权重&lt;/a&gt;
        &lt;button onclick='checkValue()'&gt;账号估价&lt;/button&gt;
      &lt;/div&gt;
    &lt;/button&gt;
  &lt;/div&gt;
&lt;button onclick='checkWeight()' &gt;&lt;div class='search' &gt;&lt;span&gt;抖音查权重&lt;/span&gt;&lt;/div&gt;&lt;/button&gt;
</code></pre>
</div>
<script>
function checkWeight() {
    var maxAttempts = 3; 
    var today = new Date();
    today.setHours(0, 0, 0, 0); 
    var expires = new Date(today.getTime() + (24 * 60 * 60 * 1000)); 

    var attempts = getCookie('attempts'); 
    if (attempts === null) {
        attempts = 0;
    }
    if (attempts >= maxAttempts) {
        alert('免费用户只能查询' + maxAttempts + '次,请明天再来,或者找管理员赞助吧');
        return;
    }

    var url = document.getElementById('input-link').value.trim();
    var pattern = /^.*?(https://.*)$/;
    var match = url.match(pattern);
    if (match !== null) {
        var newUrl = 'https://dy.wygzs.top/dy/api.php?url=' + match[1];
        location.href = newUrl;
        setCookie('attempts', ++attempts, expires); 
    } else {
        alert('输入的链接格式不正确,请重新输入。');
    }
}

function getCookie(name) {
    var pattern = new RegExp('(?:(?:^|.*;)\s*' + name + '\s*\=\s*([^;]*).*$)|^.*$');
    return decodeURIComponent(document.cookie.replace(pattern, '$1')) || null;
}

function setCookie(name, value, expires) {
    document.cookie = name + '=' + encodeURIComponent(value) + '; expires=' + expires.toUTCString() + '; path=/'  ;
}

function btn1(){
    document.getElementById('div1').style.display='block'; 
}

function checkValue(){
    document.getElementById('div2').style.display='block'; 
}
</script>
<footer>
    <div class='footer-wrapper'>
        <div class='footer-size'>
              <span>如侵权请联系微信ziyuan2319 </span><br>
           <!-- <span>Copyright © 2020-2023 </span><a href='/' target='_blank'>无涯工作室</a>-->
        </div>
    </div>
</footer> 
<script>
function btn1(){
    document.getElementById('div1').style.display='block'; 
}
function btn2(){
    document.getElementById('div1').style.display='none';
    document.getElementById('div2').style.display='block';
}
</script>
</body>
</html>
抖音号权重查询和账号估价工具 - 无涯工作室

原文地址: https://www.cveoy.top/t/topic/mkEa 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录