Skip to content

Instantly share code, notes, and snippets.

View awesee's full-sized avatar
🖥️
Working from home

Shuo awesee

🖥️
Working from home
View GitHub Profile
@awesee
awesee / isInWeixinApp.js
Created June 23, 2016 08:36
是否是微信客户端
window.isInWeixinApp = function() {
return /MicroMessenger/.test(navigator.userAgent);
};
@awesee
awesee / wechat_share.js
Created September 25, 2017 09:47
微信分享js
;(function ($) {
$(function () {
//用户自定义配置,可传入配置参数覆盖默认设置
wechatShare({
apiUrl: '/', //获取签名api
title: '分享标题', // 分享标题
desc: '分享描述', // 分享描述
link: window.location.href, // 分享链接
imgUrl: window.location.origin + '/public/images/wechat_share.png' // 分享图标
});