類型:
大小:
評分:
平台:
標簽:
關注嗨客手機遊戲
禮包、遊戲、app應有盡有
微信其實是有分享時的API,玩家們隻要隨便弄一個網頁,將縮略圖url,title、描述以及點擊後跳轉的url都設置好,微信內置瀏覽器打開時就會調用相應事件,也就是分享到朋友圈等等。
< script
>
var imgUrl = "http://1251001823.cdn.myqcloud.com/1251001823/wechat/mao80.jpg"
;
var lineLink = "http://1251001823.cdn.myqcloud.com/1251001823/wechat/sjm/launcher"
;
var descContent = '在9×9範圍內的格子中,使用色塊圍住白色神經貓。'
;
var shareTitle = '我用了1步圍住神經貓,擊敗99%的人,你能超過我嗎?'
;
var appid = ''
;
function shareFriend ( )
{
WeixinJSBridge. invoke ( 'sendAppMessage' ,
{
"appid" : appid
,
"img_url" : imgUrl
,
"img_width" : "200"
,
"img_height" : "200"
,
"link" : lineLink
,
"desc" : descContent
,
"title"
:
shareTitle
} , function ( res )
{
}
)
}
function shareTimeline ( )
{
WeixinJSBridge. invoke ( 'shareTimeline' ,
{
"img_url" : imgUrl
,
"img_width" : "200"
,
"img_height" : "200"
,
"link" : lineLink
,
"desc" : descContent
,
"title"
:
shareTitle
} , function ( res )
{
} )
;
}
function shareWeibo ( )
{
WeixinJSBridge. invoke ( 'shareWeibo' ,
{
"content" : descContent
,
"url" : lineLink
,
} , function ( res )
{
} )
;
}
document. addEventListener ( 'WeixinJSBridgeReady' , function onBridgeReady ( )
{
WeixinJSBridge. on ( 'menu:share:appmessage' , function ( argv )
{
shareFriend ( )
;
} )
;
WeixinJSBridge. on ( 'menu:share:timeline' , function ( argv )
{
shareTimeline ( )
;
} )
;
WeixinJSBridge. on ( 'menu:share:weibo' , function ( argv )
{
shareWeibo ( )
;
} )
;
} , false )
;
script
>
50%
我支持
0
50%
我反對
0