Cordova常用插件总结

1. FullSreenImage-Cordova-plugin 放大图片插件

使用:

FullScreenImage.showImageBase64(base64,name,type)
 * Parameters:
 * base64String: base64String
 * name: filename to show 
 * type: image type
 *
FullScreenImage.showImageURL(url)  这个方法只能展示本地图片
 * Parameters:
 * url: url to show

2. cordova-cookie-master 清除cookie

使用:

window.cookieMaster.clear(function () {
  // 清除完cookie之后的代码
}, function () {
         
});

3. photoviewer 浏览非本地图片

使用:

PhotoViewer.show('http://my_site.com/my_image.jpg', 'Optional Title', {share:false});

你可能感兴趣的:(Cordova常用插件总结)