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
說明:https://paste.plurk.com/show/DV1Bw5EoDnm8vlci6Men/
更多其他設定請到原噗:https://www.plurk.com/p/ob2ctr

/*背景隨噗寶點擊改變*/
footer { position:absolute; top:42px; left:0; width:100%; height:0; }
#footer { padding:0; }
#footer li:nth-child(n+2), #footer a { display:none; }
#footer li:nth-child(1):active + li, #footer li:nth-child(2):hover { display:block; }
#footer li { display:block; margin:0; font-size:0; position:absolute; }
#footer li:nth-child(-n+2) { position:absolute; z-index:600; }
#footer li:nth-child(3) { width:100%; height:100%; display:block; z-index:-1; }

/*河道高度固定*/
#timeline_holder { height:560px !important; }

/*背景大小*/
#footer {
	/*背景寬度*/ width:100%;
	/*背景高度*/ height:560px;
}

/*噗寶位置*/
#footer li:nth-child(-n+2) {
	/*左右位置*/ right:10px; /*可改left*/
	/*上下位置*/ top:10px; /*可改bottom*/
}

/*噗寶圖片*/
#footer li:nth-child(1) {
	/*噗寶待機圖*/ content:url(圖片網址);
}
#footer li:nth-child(1):hover {
	/*噗寶指上圖*/ content:url(圖片網址);
}
#footer li:nth-child(2) {
	/*噗寶按下圖*/ content:url(圖片網址);
}

/*噗寶互動背景圖片*/
#footer li:nth-child(3) {
	/*噗寶待機:背景圖*/ background:url(圖片網址);
}
#footer li:nth-child(1):hover ~ li:nth-child(3) {
	/*噗寶指上:背景圖*/ background:url(圖片網址);
}
#footer li:nth-child(2):hover + li {
	/*噗寶按下:背景圖*/ background:url(圖片網址);
}