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
/**************************
 * 簡單標籤語法 v1.0.1
 * 如果噗首包含某個tag,就會在噗首的上方顯示指定圖片
 *
 * 注意:
 * 1. 如果噗首同時包含5個tag,只能顯示一個tag的圖片
 * 2. CSS排在越後面越優先
 * (例如噗首標籤是 #日常 #新世界狂歡,只會顯示 #日常 的圖片)
 ***************************/
/* 基本語法 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(.hashtag[href$='新世界狂歡'])::before{
	content: url(https://images.plurk.com/3lFwgRbFpCC1xQw59CK4iq.gif);
	display: block;
	position: absolute;
	top: -40px;
	right: 20px;
}

#timeline_cnt .plurk .plurk_cnt .td_cnt:has(.hashtag[href$='日常'])::before{
	content: url(https://emos.plurk.com/c4580cf20c6a4be69a951593b5bb83e6_w12_h20.gif);
	display: block;
	position: absolute;
	top: -10px;
	right: 30px;
}

/* 混合版:噗首同時包含兩種標籤 */
#timeline_cnt .plurk .plurk_cnt .td_cnt:has(.hashtag[href$='新世界狂歡']):has(.hashtag[href$='爬塔'])::before{
	content: url(https://emos.plurk.com/93dc59570b4512ebc31c3af591934fa9_w32_h48.gif);
	display: block;
	position: absolute;
	top: -40px;
	right: 20px;
}