欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javaScript實(shí)現(xiàn)支付10秒倒計(jì)時(shí)

 更新時(shí)間:2021年10月26日 17:08:10   作者:wait......  
這篇文章主要為大家詳細(xì)介紹了javaScript實(shí)現(xiàn)支付10秒倒計(jì)時(shí),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了javaScript實(shí)現(xiàn)支付10秒倒計(jì)時(shí)的具體代碼,供大家參考,具體內(nèi)容如下

效果圖如下:

這個(gè)案例其實(shí)很簡(jiǎn)單,只要掌握了js基礎(chǔ)中的onclick函數(shù)以及定時(shí)器的使用,就能快速的做出這樣的效果,讓我們一起來(lái)看看怎么做吧~

首先需要兩個(gè)html文件,在兩個(gè)文件中利用html和css分別寫(xiě)好初始頁(yè)面效果,在這里就不多說(shuō)啦,具體可以看下面的代碼

讓我們來(lái)談?wù)?strong>js需要做出的效果:

1、在頁(yè)面1中點(diǎn)擊支付要跳轉(zhuǎn)到另一個(gè)文件中
2、剛進(jìn)入頁(yè)面2時(shí)要開(kāi)始計(jì)時(shí)10秒,計(jì)時(shí)結(jié)束后返回頁(yè)面1
3、點(diǎn)擊頁(yè)面2的立即返回能夠返回到頁(yè)面1

這就是我們需要做的效果

那我們要如何實(shí)現(xiàn)在兩個(gè)頁(yè)面之間的跳轉(zhuǎn)呢?

=> 利用onclicklocation.href="url" rel="external nofollow" ,在鼠標(biāo)點(diǎn)擊時(shí)改變location.href
(此處的url是指你所存放的另一個(gè)html文件的位置)

計(jì)時(shí)效果就很簡(jiǎn)單啦,利用setInterval使元素的innerText改變就可以了,當(dāng)數(shù)字等于0時(shí),同樣改變location,使其頁(yè)面跳轉(zhuǎn)

代碼如下:

頁(yè)面1:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #btn{
            display: block;
            margin:130px auto;
            width: 300px;
            height: 100px;
            font-size:30px;
        }
    </style>
</head>
<body>
    <button id="btn">支付</button>
    <script>
        let btn=document.getElementById("btn");
        
        btn.onclick=function(){
            let con=window.confirm("您確定嗎?");
            if(con){
                location.href='./支付.html';
            }
        }
    </script>
</body>
</html>

頁(yè)面2:

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

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #spa {
            font-size: 20px;
            color: red;
        }

        #total {
            width: 200px;
            height: 200px;
            background-color: rgba(169, 169, 169, 0.315);
            margin: 40px auto;
            border-radius: 20px;
            padding: 20px;
            position: flex;
            flex-direction: column;
            text-align: center;
        }

        #total h3 {
            padding-top: 20px;
        }

        #total button {
            margin-top: 30px
        }
    </style>
</head>

<body>
    <div id="total">
        <h3>恭喜您,支付成功!</h3>
        <div>
            <span id="spa">10</span>
            <span>秒后自動(dòng)返回首頁(yè)</span>
        </div>
        <button id="btn">立即返回</button>
    </div>
    <script>
        var spa = document.getElementById("spa");
        let t = 10;
        setInterval(() => {
            t--;
            spa.innerText = t;
            if (t == 0) {
                location.href = "./支付10秒鐘.html";
            }
        }, 400);
        
        var btn=document.getElementById("btn");
        btn.onclick=function(){
            location.href="./支付10秒鐘.html" rel="external nofollow" 
        }
    </script>
</body>

</html>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論