第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

倒計時結(jié)束關(guān)閉模式

倒計時結(jié)束關(guān)閉模式

慕田峪7331174 2022-10-21 14:32:56
我有一個倒數(shù)計時器,其工作原理如下//countdownconst countdown = document.querySelector('.countdown');// Set Launch Date (ms)const launchDate = new Date('June 29, 2020 09:26:00').getTime();// Update every secondconst intvl = setInterval(() => {// Get todays date and time (ms)const now = new Date().getTime();// Distance from now and the launch date (ms)const distance = launchDate - now;// Time calculationconst days = Math.floor(distance / (1000 * 60 * 60 * 24));const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));const mins = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));const seconds = Math.floor((distance % (1000 * 60)) / 1000);// Display resultcountdown.innerHTML = `<div>${days}<span>Days</span></div> <div>${hours}<span>Hours</span></div><div>${mins}<span>Minutes</span></div><div>${seconds}<span>Seconds</span></div>`;// If launch date is reachedif (distance < 0) {// Stop countdownclearInterval(intvl);// Style and output textcountdown.style.color = '#17a2b8';countdown.innerHTML = 'Launched!';}}, 1000);我有一個在此處關(guān)閉模式的當(dāng)前功能。$(".modalDialogload").css({"opacity":"0","pointer-events":"none"});}, 2000);我希望它在倒計時結(jié)束時運(yùn)行,但我無法將其合并到 // 如果達(dá)到日期部分。
查看完整描述

1 回答

?
四季花海

TA貢獻(xiàn)1811條經(jīng)驗 獲得超5個贊

如果我正確理解您的問題,您可以添加一些 js 以將新類添加到您的模態(tài)中。


     // If launch date is reached

        if (distance < 0) {

        // Stop countdown

        clearInterval(intvl);

        // Style and output text

        countdown.style.color = '#17a2b8';

        cou


ntdown.innerHTML = 'Launched!';

     // Add this line

        

let modal = document.querySelector('.modalDialogload');

modal.classList.add('HideModalClass');  

     // End

            }

    

    .HideModalClass{

    opacity: 0;

    pointer-events:none;

    display:none;

    }


查看完整回答
反對 回復(fù) 2022-10-21
  • 1 回答
  • 0 關(guān)注
  • 97 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號