1 Star 0 Fork 13

Kvein/SvgEditor

forked from 西木野朱雀/SvgEditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
技巧.txt 868 Bytes
一键复制 编辑 原始数据 按行查看 历史
//ȡͼƬļURL
function getImgFileUrl(sourceId) {
var url;
if (navigator.userAgent.indexOf("MSIE") >= 1) { // IE
url = document.getElementById(sourceId).value;
} else if (navigator.userAgent.indexOf("Firefox") > 0) { // Firefox
url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0));
} else if (navigator.userAgent.indexOf("Chrome") > 0) { // Chrome
url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0));
}
return url;
}
logoFileCmp.on('change', function preImg(e, t, option) {
var url = getImgFileUrl(t.id);
var imgPre = document.getElementById("logoPic");
imgPre.src = url;
}, this);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kinggod2012/SvgEditor.git
[email protected]:kinggod2012/SvgEditor.git
kinggod2012
SvgEditor
SvgEditor
master

搜索帮助