1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var src = [

    "https://www.cec.gov.tw/zh-TW/TC/63000000000000000.html",
    "https://www.cec.gov.tw/zh-TW/TC/65000000000000000.html",
    "https://www.cec.gov.tw/zh-TW/TC/10018000000000000.html",
    "https://www.cec.gov.tw/zh-TW/T1/10020010000000000.html"
];


document.body.innerHTML = `
<style>

    iframe {
        width:23%;
        height:${document.body.clientHeight}px;
    }

</style>
`


src.forEach(src=>{

    var ifr = document.createElement("iframe");

    ifr.src = src;


    document.body.prepend(ifr);


});




setTimeout(()=>{
    document.querySelectorAll("iframe").forEach(ifr=>{
    
        ifr.contentDocument.querySelectorAll("td").forEach(td=>{
            td.style.border="1px solid #fff";
            td.style.background="#fff";
        });
    
    });
},1000);



setInterval(()=>{

    document.querySelectorAll("iframe").forEach(ifr=>{

        ifr.contentWindow.location.reload();


    });

    setTimeout(()=>{
        document.querySelectorAll("iframe").forEach(ifr=>{
        
            ifr.contentDocument.querySelectorAll("td").forEach(td=>{
                td.style.border="1px solid #fff";
                td.style.background="#fff";
            });
        
        });
    },1000);


},1000 * 30);