mui图片预览时如何保存图片到相册

     mui图片预览的时候,需要保存图片到相册。

实现效果图:

 

实现思路

1.更改mui.previewimage.js源码

设置保存按钮和时间,获取当前预览图片的url

var PreviewImage = function(options) {
		this.options = $.extend(true, {
			id: '__MUI_PREVIEWIMAGE',
			zoom: true,
			header: '<span class="mui-preview-indicator"></span><div οnclick="saveImage()" class="down">保存</div>',
			footer: ''
		}, options || {});
		this.init();
		this.initEvent();
	};

 

proto._loadItem = function(index, isOpening) { //TODO 暂时仅支持img
//		alert(index);
		var itemEl = this.scroller.querySelector($.classSelector('.slider-item:nth-chi

本文转载:CSDN博客