Film library

Get the element
        const gonggao = document.getElementById('gonggao');
        const closeBtn = gonggao.querySelector('.gonggao-close');
        const confirmBtn = gonggao.querySelector('.gonggao-confirm');
        Store the key name
        const STORAGE_KEY = 'gonggao_closed_time';
        Check if the pop-up window should appear
        function shouldShowGonggao() {
            const closedTime = localStorage.getItem(STORAGE_KEY);
            if (!closedTime) {
                return true; Never closed, shown
            }
            
const now = new Date().getTime();
            const diff = now - parseInt(closedTime);
            
If it exceeds 24 hours, a pop-up window will appear
            return diff > 24 * 60 * 60 * 1000;
        }
        
A pop-up window is displayed
        function showGonggao() {
            gonggao.classList.add('active');
            document.body.style.overflow = 'hidden'; Prevent background scrolling
        }
        
Close the pop-up window and log the time
        function closeGonggao() {
            gonggao.classList.remove('active');
            document.body.style.overflow = 'auto'; Resume background scrolling
            
Record the shutdown time
            localStorage.setItem(STORAGE_KEY, new Date().getTime().toString());
        }
        
Automatically display pop-ups after page loading (if needed)
        document.addEventListener('DOMContentLoaded', function() {
            Delay the display by 1 second to let the page load first
            setTimeout(function() {
                if (shouldShowGonggao()) {
                    showGonggao();
                }
            }, 1000);
        });
        
bind closure events
        closeBtn.addEventListener('click', closeGonggao);
        confirmBtn.addEventListener('click', closeGonggao);
        
Click Background Off
        gonggao.addEventListener('click', function(e) {
            if (e.target === gonggao) {
                closeGonggao();
            }
        });
        
ESC key is off
        document.addEventListener('keydown', function(e) {
            if (e.key === 'Escape' && gonggao.classList.contains('active')) {
                closeGonggao();
            }
        });

更新至1集

Get the element const gonggao = document.getElementById('gonggao'); const closeBtn = gonggao.querySelector('.gonggao-close'); const confirmBtn = gonggao.querySelector('.gonggao-confirm'); Store the key name const STORAGE_KEY = 'gonggao_closed_time'; Check if the pop-up window should appear function shouldShowGonggao() { const closedTime = localStorage.getItem(STORAGE_KEY); if (!closedTime) { return true; Never closed, shown } const now = new Date().getTime(); const diff = now - parseInt(closedTime); If it exceeds 24 hours, a pop-up window will appear return diff > 24 * 60 * 60 * 1000; } A pop-up window is displayed function showGonggao() { gonggao.classList.add('active'); document.body.style.overflow = 'hidden'; Prevent background scrolling } Close the pop-up window and log the time function closeGonggao() { gonggao.classList.remove('active'); document.body.style.overflow = 'auto'; Resume background scrolling Record the shutdown time localStorage.setItem(STORAGE_KEY, new Date().getTime().toString()); } Automatically display pop-ups after page loading (if needed) document.addEventListener('DOMContentLoaded', function() { Delay the display by 1 second to let the page load first setTimeout(function() { if (shouldShowGonggao()) { showGonggao(); } }, 1000); }); bind closure events closeBtn.addEventListener('click', closeGonggao); confirmBtn.addEventListener('click', closeGonggao); Click Background Off gonggao.addEventListener('click', function(e) { if (e.target === gonggao) { closeGonggao(); } }); ESC key is off document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && gonggao.classList.contains('active')) { closeGonggao(); } });
假面骑士×假面骑士铠武&Wizard天下决胜之战国MOVIE大合战
No records
Please enter the keywords you want to search for
Google Chrome, X browser, Via browser

Sigu film and television resources are collected from major websites, this website only provides web page browsing services, does not provide video resource storage, and does not participate in any video recording and uploading If the programs collected on this site do not intend to infringe your company's copyright, please write to the email address at the bottom of the pagesiguyy.com@gmail.com

System announcements
×
Recommended browser for Android devices
Google Chrome, X browser, Via browser
Recommended browser for Apple devices
Via browser, Google Chrome, please turn off the drop-down lock when playing in full screen
Common problems are solved
If you encounter ad blocking, try changing the number of video episodes; If you encounter a black screen issue, clear your browser cache
Important reminder
This platform is completely free, please do not believe any charging requirements or information about paying to unlock content