2008-11-23 23:51:16飄雪寒燕(不良薯)

幫火狐提高網頁易讀性

遇到部落格字太小專用的,新增書籤後,將內容放進網址欄。
遇到很小字的網頁就點下該這個書籤。

之前抓到的會把背景全部改成白底,文字都變黑字,畫面反而有點彆拗。
所以改成保留原色,但不知道要怎樣才能有大小字差別的效果。

javascript:(function(){var newSS, styles='* { line-height: 160% !important; font-size: 12pt !important }'; if(document.createStyleSheet) { document.createStyleSheet(%22javascript:'%22+styles+%22'%22); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName(%22head%22)[0].appendChild(newSS); } })();


參考資料:

http://forum.moztw.org/viewtopic.php?t=17995&highlight=%E6%98%93%E8%AE%80%E6%80%A7

增加網頁易讀性的瀏覽器按鈕(bookmarklet) for Firefox
http://planetoid.info/weblog/2007/03/15/000659.html




如果覺得每一頁都要按一下書籤很麻煩的話,直接套用網頁樣式。

p * {
   font-size: 18px !important;
   line-height: 30px !important;
   letter-spacing: 0px !important;
}

table * {
font-size: 16px !important
;
line-height: 1.6em !important
}

div * {
font-size: 16px !important
;
line-height: 1.6em !important
}

li * {
font-size: 16px !important
;
line-height: 1.6em !important
}

ol * {
font-size: 16px !important
;
line-height: 1.6em !important
}
planetoid 2009-06-14 10:15:38

「font-size: 12pt !important」更改其中的12pt為其他的數字,例如11pt就可變小一點大小的文字

版主回應
我是希望原始小字變中字,原始中字變大字、大字變大大字。而且最好不需要一個一個設…… 2009-06-18 01:51:15