m-share.js
Version:
h5页面分享组件、支持分享到微信、朋友圈、qq、QQ空间、QQ好友。
20 lines (19 loc) • 624 B
JavaScript
export default (info) => {
if (info.desc && !document.querySelector('meta[name$="cription"]')) {
const $meta = document.createElement("meta");
$meta.setAttribute("description", info.desc);
}
// 添加隐藏的img标签在body最前面
if (info.imgUrl) {
const $img = document.createElement("img");
$img.style.cssText =
"width: 0;height: 0;position: absolute;z-index: -9999;top: -99999px;left: -99999px;";
$img.onload = () => {
document.body.insertBefore($img, document.body.firstChild);
};
$img.onerror = () => {
$img.remove();
};
$img.src = info.imgUrl;
}
};