<div>
<button onclick="makePoster()">生成</button>
</div>
<img id="myImg" />
body {
padding: 25px;
}
#editor {
border: 1px solid #ccc;
}
#counter {
border: 1px solid #ccc;
border-width: 0px 1px 1px 1px;
color: #aaa;
padding: 5px 15px;
text-align: right;
}
xxxxxxxxxx
const params = {//参数
title: 'Fastposter',
desc: 'fastposter云服务基于低代码设计理念,只需几行代码,轻松完成海报开发',
img: 'https://store.fastposter.net/assets/www/0427.png',
price: '19.80',
qr: 'hello Fastposter',
}
const config = {//配置
token: '4461dc24ee69ec600cae',
b64: true,
// endpoint:'https://poster.prodapi.cn' 社区版或专业版需要设置服务地址
}
function makePoster() {
fastposter.init(config).buildPoster(
'3e8dd5f0807f4696',
params).then((res) => {
document.getElementById('myImg').src = res
})
}
This Pen doesn't use any external CSS resources.