在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:placeholder.js开源软件地址:https://gitee.com/hustcc/placeholder.js开源软件介绍:image-placeholder.js一个Javascript库,用于在浏览器端生成 一、预览二、特点
三、使用提供两种方式引入,分别为:浏览器script引入、模块化引入。 3.1 使用script引入引入 placeholder.js 到你的前端代码中: <script src="placeholder.js"></script> 提供免费CDN: 3.2 通过 ES6引入// install before// npm install placeholder.jsimport placeholder from 'placeholder.js';// orvar placeholder = require("placeholder.js"); 支持UMD加载,得到的对象(如全局对象placeholder)。 3.3 使用方法
<img src="image_origin.png" onerror="this.src=placeholder.getData({text: 'Image 404'})">
<img class="placeholder" /> 或者携带参数options: <img options="size=256x128&text=Hello!" class="placeholder" /> 注意事项:
<img options="size=256x128&text=Hello%2525%26%3DWorld" class="placeholder"> 上面的配置会生成一个占位图,其中的文字内容为: 四、Placeholder 配置项Placeholder 配置项用于API方法的输入参数, e.g.
具体参数配置例子: 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 方法
六、为什么要造轮子
七、待完成
八、其他任何问题欢迎反馈和 pr ,代码非常简单,相信 1 分钟你就可以看懂,非常欢迎 |
请发表评论