美文网首页
Cordova常用插件总结

Cordova常用插件总结

作者: YHWXQ简简单单的生活 | 来源:发表于2016-10-12 11:01 被阅读184次

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常用插件总结

      本文链接:https://www.haomeiwen.com/subject/qdhiyttx.html