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 | /*滑鼠移至效果*/ /*所有訊息標籤透明度變化*/ #filter_tab {filter:alpha(opacity=0) !important;opacity:0 !important; zoom:1;} #filter_tab:hover {filter:alpha(opacity=100) !important;opacity:1 !important; zoom:1; } /*plurk-搜尋標籤透明度變化*/ #toggle_tab li {filter:alpha(opacity=0) !important;opacity:0 !important; zoom:1;} #toggle_tab li:hover {filter:alpha(opacity=100) !important;opacity:1 !important; zoom:1;} /*隱藏往前往後圖示*/ .cmp_arrow_right, /*往右*/ .cmp_back_to_today /*移至最前*/ { filter: alpha(opacity=0); opacity: 0; zoom:1; } div.dash-segment, /*各區*/ #footer /*頁尾*/ {filter:alpha(opacity=0) !important; opacity:0 !important; zoom:1;} div.dash-segment:hover, #footer:hover {filter:alpha(opacity=100) !important; opacity:1 !important; zoom:1;} /*測試區噗隱藏*/ #timeline_cnt { filter:alpha(opacity=10); (將浪上的噗隱藏起來,透明度設"10",讓它若隱若現) -moz-opacity:0.1; opacity:0.1; zoom:1; } #timeline_cnt:hover{ filter:alpha(opacity=100); (滑鼠移過去,浪上的噗就會清楚顯現,設"100,1,1") -moz-opacity:1; opacity:1; zoom:1; } /*噗整體透明度*/ .plurk_cnt, .plurk_box .caption, .plurk_box .list, .plurk_box .mini_form, .info_box, td.td_cnt texture, textarea#input_small { filter: alpha(opacity=70); opacity:0.7; -moz-opacity:0.7; zoom:1; (通常設"90,0.9,0.9"或"80,0.8,0.8",太透明的話文字會看不清楚喔) } /*滑鼠移至效果*/ |
Direct link: https://paste.plurk.com/show/2318886