1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
const share = (img, text, desc) => { const url = document.location.href
window._bd_share_config = { common: { bdSnsKe: {}, bdMini: '2', bdStyle: '0', bdSize: '32', bdUrl: url, bdPic: img, bdText: text, bdDesc: desc, }, share: {}, selectShare: { bdContainerClass: null, bdSelectMiniList: ['qzone', 'tsina', 'popup_tqq', 'renren'], viewSize: '32', }, } const bdScript = document.createElement('script') bdScript.setAttribute('src', `http://bdimg.share.baidu.com/static/api/js/share.js?cdnversion=${new Date().getTime()}`) document.getElementsByTagName('head')[0].appendChild(bdScript) } export default share
|