一个Javascript库,用于在浏览器端生成 placeholder image
,提供完善的配置和简单的方法。EN-Readme
https://github.com/hustcc/placeholder.js
官方网站示例
0.98k
,增加img配置方式之后,为 1.52kb
引入 placeholder.js 到你的前段代码中:
1.
调用placeholder.js的方法进行替换,举个例子如下:
2.
使用URL参数的方式配置Img的属性options,例如:
或者携带参数options:
请注意img标签的class属性必须placeholder。
Placeholder 配置项用于API方法的输入参数, e.g. placeholder.getData({text: 'Image 404'})
. 或者作为URL参数样式作为img的属性配置, e.g. options="size=256x128&text=Hello!"
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
。
扫码关注w3ctech微信公众号