uc qq share to wechat
1.0.0
Lösen Sie die native WeChat-Freigabefunktion des UC/QQ-Browsers für Mobiltelefone aus
npm install --save ucshare
var mShare = require ( 'ucshare' ) ;
/**
* @param {Object} config 配置对象 参数见示例
* config = {
* title : 'Lorem ipsum dolor sit.',
* url : 'http://m.ly.com',
* desc : 'Lorem ipsum dolor sit.',
* img : 'http://img1.40017.cn/cn/s/c/2015/loading.gif',
* type : type // 1 ==> 朋友圈 2 ==> 朋友 0 ==> 直接弹出原生
* };
*/
var mshare = new mShare ( {
title : 'Lorem ipsum dolor sit.' ,
url : 'http://m.ly.com' ,
desc : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quaerat inventore minima voluptates.' ,
img : 'http://placehold.it/150x150'
} ) ;
$ ( 'button' ) . click ( function ( ) {
// 1 ==> 朋友圈 2 ==> 朋友 0 ==> 直接弹出原生
mshare . init ( + $ ( this ) . data ( 'mshare' ) ) ;
} ) ;