Skip to content

Instantly share code, notes, and snippets.

@loo2k
Last active October 11, 2017 03:46
Show Gist options
  • Save loo2k/ee0778cd1a86e82e82da to your computer and use it in GitHub Desktop.
Save loo2k/ee0778cd1a86e82e82da to your computer and use it in GitHub Desktop.
调用微信内置图片查看
/**
* 调用微信内置浏览器查看图片功能
* current - 查看图片的 url
* urls - 查看图片 url 集合
*/
function imagePreview(current, urls) {
// 解析相对路径
var anchor = document.createElement('a');
function parseUrl(url) {
anchor.href = url;
return anchor.href;
}
current = parseUrl(current);
for (var i = 0; i < urls.length; i++) {
urls[i] = parseUrl(urls[i]);
}
// 调用 WeixinJSBridge imagePreview
typeof WeixinJSBridge !== 'undefined' && WeixinJSBridge.invoke('imagePreview', {
current: current,
urls: urls
}, function() {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment