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
/* SK8 曆 & 藍加 - 兩個噗寶語法參考 */
/* 歡迎用來做噗寶~使用時請標註 阿殼@hokdimdim 或此噗連結 https://www.plurk.com/p/o8tf5l */


#dynamic_logo img {
    filter: alpha(opacity=0);
    opacity: 0.0;
}

/* 右面噗寶 曆 */
#dynamic_logo {
    position: relative;
    height: 372px;
    width: 100vw;
    background-size: 372px auto;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url(https://images.plurk.com/7FbXBXA1lgJ86pxNtJQSjx.gif);
}

/* 左面噗寶 藍加 */
#dynamic_logo:after {
    content: '';
    position: absolute;
    z-index: -1;
    background: url(https://images.plurk.com/5ZtcU8vEdHkZVHO6skh1ih.gif);
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-size: 372px;
    background-repeat: no-repeat;
    background-position:  calc(100vw - 380px) 0px;
    transform: scaleX(-1);
}