一個Javascript庫,用於在瀏覽器端生成placeholder image
,提供完善的配置和簡單的方法。EN-Readmecss
官方網站示例git
0.98k
,增長img配置方式以後,爲1.52kb
引入 placeholder.js 到你的前段代碼中:github
<script src="placeholder.js"></script>
1.
調用placeholder.js的方法進行替換,舉個例子以下:web
<img src="image_origin.png" onerror="this.src=placeholder.getData({text: 'Image 404'})">
2.
使用URL參數的方式配置Img的屬性options,例如:canvas
<img class="placeholder" />
或者攜帶參數options:瀏覽器
<img options="size=256x128&text=Hello!" class="placeholder" />
請注意img標籤的class屬性必須placeholder。框架
Placeholder 配置項用於API方法的輸入參數, e.g. placeholder.getData({text: 'Image 404'})
. 或者做爲URL參數樣式做爲img的屬性配置, e.g. options="size=256x128&text=Hello!"
dom
size
: placeholder圖片尺寸. 例如: 256x128
, 默認: 128x128
.bgcolor
: 背景顏色. 例如: #969696
. 默認: random
.color
: 前景顏色,文字顏色. 例如: #ccc
. 默認: random
.text
: 自定義文本內容. 例如: Hello World, 你好
. 默認: equal to size
.fstyle
: 字體樣式. 能夠是 normal / italic / oblique
. 默認: oblique
.fweight
: 字體weight. 能夠是 normal / bold / bolder / lighter / Number
. 默認: bold
.fsize
: 字體大小. 默認: 自動
計算字體大小防止文字超出圖片大小.ffamily
: 字體. 默認: consolas
.具體參數配置例子:字體
var opts = { size: '512x256', bgcolor: '#ccc', color: '#969696', text: 'Hello World, 你好', fstyle:'oblique', fweight: 'bold', fsize:'40', ffamily: 'consolas' } console.log(placeholder.getData(opts)) //get the base64 of the placeholder image.
做爲img的options屬性爲:網站
size=256x128&text=Hello!&bgcolor=#ccc&color=#969696&fstyle=oblique&fweight=bold&fsize=40&ffamily=consolas
placeholder.getData(opts)
: 得到placeholder圖片的base64字符串,能夠直接在img標籤的src屬性中使用,或者在css的背景中使用。placeholder.getCanvas(opts)
: 得到canvas元素, 能夠直接插入到DOM結構中。不太使用在網頁上使用
。任何問題歡迎反饋和 pr ,代碼很是簡單,相信 1 分鐘你就能夠看懂,很是歡迎push request
。